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

后端 未结 5 1457
醉梦人生
醉梦人生 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:40

    I don't think adding dylib files manually is the right way. Parse documentation is not updated for XCode 7: .dylib files are now .tbd files! You can add these files using Build Phases > Link binary with libraries panel and selecting these files from the list, searching for libz and libsqlite3 (without the extension). You can find quick info here about tbd files : Why Xcode 7 shows *.tbd instead of *.dylib?

提交回复
热议问题