Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图创建一个需要使用 sqlite 的 Theos 应用程序,但我不知道应该如何像在 Xcode 应用程序中那样导入 sqlite3 库。以下是我到目前为止所做的,并在编译时出错。
RootViewController.h
sqlite3.h
sqlite3.c
试图从这么多天弄清楚我是新人。
如果其他人需要,我在 Theos App 中使用 Sql 语句做了什么,我添加了
sqltest_LDFLAGS=-lsqlite3
在 makefile 中,现在可以使用所有 Sql 语句。
在代码中添加此标题
#import <sqlite3.h>
或者
#include <sqlite3.h>
并在makefile中添加:
NameOfYourApp_LDFLAGS=-lsqlite3