libsqlite3.dylib and libz.dylib missing in Xcode 7. How do I use Parse?

后端 未结 5 1505
醉梦人生
醉梦人生 2020-12-23 16:58

How do I use Parse if libz.dylib and libsqlite3.dylib are missing in Xcode 7 but the .tbd version exists. I am just trying to setup Push Notifications. How do I get this to

5条回答
  •  天涯浪人
    2020-12-23 17:54

    As for Xcode 7 b4: To add Parse support into existing project, follow the Parse "Set up the SDK" for existing project and to add the libz and libsqlite3 libs, use:

    • Go to Build Phases > Link Binary with Libraries > + > Add other
    • While in the file selection window press: "command"+shift+G (i.e. Go to folder) and type /usr/lib/
    • From /user/lib find and add : libz.dylib and libsqlite3.dylib

    Please note!: Also make sure ATS works for you - this is new in iOS9!, see more info for example at NSURLSession "HTTP load failed kCFStreamErrorDomainSSL, -9813 ; Self signing certificate

提交回复
热议问题