开发者

"_OBJC_CLASS_$_DBAccess", referenced from:

开发者 https://www.devze.com 2023-02-23 15:05 出处:网络
Trying to build my program and getting the following error. Don\'t see anything obvious. All my import statements seem correct:

Trying to build my program and getting the following error. Don't see anything obvious. All my import statements seem correct:

Undefined symbols: "_OBJC_CLASS_$_DBAccess", referenced from: objc-class-ref-to-DBAccess in LocationsViewController.o ld: symbol(s) not found collect2: ld r开发者_如何转开发eturned 1 exit status


This sort of problem usually means that the linker isn't finding the class (if your imports are wrong you only get a lexing warning).

Check to make sure that your project is properly linked to whatever uses DBAccess and that DBAccess.m/h is included in the output.

0

精彩评论

暂无评论...
验证码 换一张
取 消