Compiling custom SQLite for an iPhone app

前端 未结 3 732
梦毁少年i
梦毁少年i 2020-12-09 05:35

I\'m trying to compile the SQLite amalgamation source into my iPhone app (to give me access to the full-text searching functionality that isn\'t available in the iPhone-comp

3条回答
  •  北海茫月
    2020-12-09 06:18

    That type of error usually means a missing framework.

    1. Right- or control-click on your Project's Frameworks folder.
    2. Select Add > Existing Framework...
    3. Go to: Macintosh HD > Developer > Platforms > iPhoneOS.platform > Developer > SDKs > iPhoneOS2.2sdk > usr > lib and select libsqlite3.dylib
    4. Rebuild your project

    That should take care of it, I think. You may need to add a similar library for running on the iPhone Simulator.

提交回复
热议问题