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

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

    In XCode 7 the *.dylib files are now *.tbd files, just search for the library you want and change the extension to .tbd

    Example:

    libz.dylib      -> libz.tbd
    libstdc++.dylib -> libstdc++.tbd
    

    Thanks

提交回复
热议问题