昨天 xcode 升級(jí)為7之后攀操,真機(jī)編譯過(guò)不去,模擬器能編譯過(guò)毙玻,編譯不過(guò)豌蟋,
方法一:更新library使包含Bitcode,否則會(huì)出現(xiàn)以下中的警告桑滩;
(null): URGENT: all bitcode will be dropped because ‘/Users/myname/Library/Mobile Documents/comappleCloudDocs/foldername/appname/GoogleMobileAds.framework/GoogleMobileAds(GADSlot+AdEvents.o)‘ was built without bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. Note: This will be an error in the future.
方法二:關(guān)閉Bitcode
工程設(shè)置中 buildingsetting 中搜索bitcode 選擇no
另外 http 支持有問(wèn)題梧疲,需要配置支持 http,
方式一: 使用文本編輯Info.plist, 在當(dāng)中添加:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
方式二: 在Info.plist中添加:
以上兩種方式所實(shí)現(xiàn)的效果是一致的, 但是并不嚴(yán)謹(jǐn), 建議有選擇的允許HTTP請(qǐng)求(這個(gè)操作方法與上文"方式一"相同):
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>域名.com</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSTemporaryExceptionMinimumTLSVersion</key>
<string>TLSv1.1</string>
</dict>
</dict>
</dict>
當(dāng)然, 以上方法都是建立在所訪問(wèn)的請(qǐng)求是HTTP類型的基礎(chǔ)上, 一勞永逸的方法就是讓服務(wù)端升級(jí)使用TLS 1.2 SSL加密請(qǐng)求的HTTPS協(xié)議.
服務(wù)器已支持TLS 1.2 SSL 运准,但iOS9上還是不行幌氮,還要進(jìn)行鏈接里的適配操作⌒舶模”那是因?yàn)椋篈TS只信任知名CA頒發(fā)的證書该互,小公司所使用的 self signed certificate,還是會(huì)被ATS攔截韭畸。對(duì)此宇智,建議使用鏈接中給出的NSExceptionDomains蔓搞,并將你們公司的域名掛在下面。