简体   繁体   中英

How to use the Parse SDK with Xcode 7 and iOS 9

The Parse SDK has some libraries that IOS 9 doesn't support.

I hear it's because now IOS 9 has some new compression libraries and Parse still uses the old libraries, is there a way I can still import the old compression libraries so I can use Parse with IOS 9 applications?

I'm specially looking to add wantibz.dylib libsqlite3.dylib to my project

I don't really understand your question (What compression libraries are you talking about? Where did you hear that? From whom?), but Parse has supported iOS 9 since version 1.8.3 in early September . Update your SDK .

V1.8.3 — SEPTEMBER 11, 2015

New

Parse SDK now officially supports iOS 9, Xcode 7 and OS X 10.11.
PFQuery can now be used with the new Objective-C generics syntax.
Now shipping with backwards-compatible bitcode support on the Xcode 7 GM.

在Xcode 7中,两个库都具有不同的扩展名,即libz.tbdlibsqlite3.tbd文件是新的“基于文本的存根库”,它们提供了更紧凑的存根库版本,可在SDK中使用。 ,并有助于大幅减少其下载大小。

I was only able to add Parse using Cocoapods by adding pod 'Parse' to my Podfile. I removed libz.tbd, libsqlite3.tbd, Parse.framework and Bolts.framework before running pod install and it worked.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM