Libz.dylib libsqlite3.dylib is not included in Xcode 7, Parse does not save data

I am trying to work with Parse in an application, I am new to fast. But I downloaded Xcode 7, and it seems that libz.dylib libsqlite3.dylib is missing, and when I compile and create it is completed successfully, but Parse does not show any data. I tried adding -lz and -lsqlite3 to the "Other linker flags", but this did not solve the problem. Does anyone know how to add these libraries?

+7
objective-c xcode swift xcode7
source share
1 answer
  • Go to Build Phases> Linking Binary Files with Librairies +> Add Another ...
  • As soon as in the file selection window do "CMD" + Shift + G (go to the folder) and enter /usr/lib/ . From /usr/lib/ you can add libz.dylib and libsqlite3.dylib .

https://forums.developer.apple.com/message/9176#9176

+22
source share

All Articles