IOS成长之路-Undefined symbols for architecture armv7s:解决之道

Undefined symbols for architecture armv7s:

  "_sqlite3_reset", referenced from:

      _initializeStatement in Parse(PF_FBCacheIndex.o)


只因缺少了某个类库文件,我们只需去把它添加进去即可。

在这里"_sqlite3_reset"  告诉了我们它缺少的是什么。

缺少:libsqlite3.dylib

你可能感兴趣的:(IOS成长之路-Undefined symbols for architecture armv7s:解决之道)