Objective-C:链接期间未找到符号

发布于 2024-10-21 01:43:37 字数 347 浏览 1 评论 0原文

Obj-C 非常非常新......也就是说,我之前在代码中遇到了一些问题,这些问题似乎已经解决了(我猜!)。现在,当我进行构建时,我得到以下信息:

Error Message

我没有使用普通 SQLite,而是使用 SQLCipher,( http://sqlcipher.net)

它谈论的是什么符号?我该如何解决它?

感谢您(提前)查看此内容...在解决此问题之前,我已经“死在水中”了!

Very, very new at Obj-C... that said, I had some problems with code earlier, which seem to be resolved (I guess!). Now, when I do a build, I get this:

Error Message

I am not using vanilla SQLite, but rather SQLCipher, (http://sqlcipher.net)

What symbols is it talking about? and how do I fix it?

Thank you (in advance) for looking at this... I'm "dead in the water" until I can get this fixed!

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

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

发布评论

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

评论(1

冷默言语 2024-10-28 01:43:37

您似乎尚未将 SQLite 库添加到您的项目中。选择“项目”->“添加到项目...”并选择库。

当 Xcode 说“未找到符号”时,它告诉您正在使用未在任何地方定义的名称。它向您显示的特定符号是 _sqlite3_open,它看起来像是 SQLite 库定义的那种东西。

It looks like you haven't added the SQLite library to your project. Choose Project->Add to Project... and select the library.

When Xcode says 'symbols not found,' it's telling you that you're using a name for something that's not defined anywhere. The specific symbol it shows you is _sqlite3_open, which looks like the sort of thing that would be defined by the SQLite library.

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