简体   繁体   English

如何在Xcode 7和iOS 9中使用Parse SDK

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

The Parse SDK has some libraries that IOS 9 doesn't support. Parse SDK包含一些IOS 9不支持的库。

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? 我听说这是因为现在IOS 9具有一些新的压缩库,并且Parse仍使用旧的库,是否有办法我仍可以导入旧的压缩库,以便可以将Parse用于IOS 9应用程序?

I'm specially looking to add wantibz.dylib libsqlite3.dylib to my project 我特别想将wantibz.dylib libsqlite3.dylib添加到我的项目中

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 . 我不太了解您的问题(您在谈论什么压缩库?您在哪里听到的?是从谁那里听到的?),但是Parse自9 月初的1.8.3版开始支持iOS 9。 Update your SDK . 更新您的SDK

V1.8.3 — SEPTEMBER 11, 2015 V1.8.3-2015年9月11日

New

Parse SDK now officially supports iOS 9, Xcode 7 and OS X 10.11. Parse SDK现在正式支持iOS 9,Xcode 7和OS X 10.11。
PFQuery can now be used with the new Objective-C generics syntax. PFQuery现在可以与新的Objective-C泛型语法一起使用。
Now shipping with backwards-compatible bitcode support on the Xcode 7 GM. 现在在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. 我只能通过将Pod'Parse pod 'Parse'添加到我的Podfile中来使用Cocoapods添加pod 'Parse' I removed libz.tbd, libsqlite3.tbd, Parse.framework and Bolts.framework before running pod install and it worked. 在运行pod install之前,我删除了libz.tbd,libsqlite3.tbd,Parse.framework和Bolts.framework并成功运行。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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