“_OBJC_CLASS_$_DBAccess”,引用自:

发布于 2024-10-31 13:36:43 字数 192 浏览 2 评论 0原文

尝试构建我的程序并收到以下错误。看不到任何明显的东西。我所有的导入语句似乎都是正确的:

未定义的符号: “_OBJC_CLASS_$_DBAccess”,引用自: LocationsViewController.o 中的 objc-class-ref-to-DBAccess ld:未找到符号 Collect2: ld 返回 1 退出状态

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 returned 1 exit status

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七七 2024-11-07 13:36:43

这类问题通常意味着链接器找不到该类(如果您的导入错误,您只会收到词法警告)。

检查以确保您的项目正确链接到使用 DBAccess 的任何项目,并且输出中包含 DBAccess.m/h

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文