http://www.jianshu.com/p/631bd7f12a38css
1.網絡請求報錯。
升級Xcode 7.0
發現網絡訪問失敗。
輸出錯誤信息git
The resource could not be loaded because the App Transport Security policy requires the use of a secure connection.github
緣由:iOS9引入了新特性App Transport Security (ATS)
。
詳情:App Transport Security (ATS)
新特性要求App內訪問的網絡必須使用HTTPS
協議。
可是如今公司的項目使用的是HTTP
協議,使用私有加密方式保證數據安全。如今也不能立刻改爲HTTPS協議傳輸。
最終找到如下解決辦法:
在Info.plist中添加NSAppTransportSecurity
類型Dictionary
。
在NSAppTransportSecurity
下添加NSAllowsArbitraryLoads
類型Boolean
,值設爲YES
api
2.Scheme白名單問題(沒法判斷手機是否安裝微信等)安全
-canOpenURL: failed for URL: "weixin://app/wxdaae92a9cfe5d54c/" - error: "This app is not allowed to query for scheme weixin"微信
搜索後得知網絡
近期蘋果公司iOS 9系統策略更新,限制了http協議的訪問,此外應用須要在「Info.plist」中將要使用的URL Schemes列爲白名單,纔可正常檢查其餘應用是否安裝。app
受此影響,當你的應用在iOS 9中須要使用微信SDK的相關能力(分享、收藏、支付、登陸等)時,須要在「Info.plist」裏增長以下代碼:微信支付
注意:截圖來自微信開放平臺,裏面已經包含第一個問題的解決ui
完成後需使用Xcode 7編譯。
若是你在模擬器上運行能夠能還會有如下報錯:
-canOpenURL: failed for URL: "weixin://app/wxdaae92a9cfe5d54c/" - error: "(null)"
這是由於模擬器上並無安裝微信,若是運行到真機上就不會有報錯了。
請注意:未升級到微信客戶端6.2.5及以上版本的用戶,在iOS 9下使用到微信相關功能時,仍可能沒法成功。
下面整理一些經常使用的白名單
<key>LSApplicationQueriesSchemes</key> <array> <string>mqqOpensdkSSoLogin</string> <string>mqzone</string> <string>sinaweibo</string> <string>alipayauth</string> <string>alipay</string> <string>safepay</string> <string>mqq</string> <string>mqqapi</string> <string>mqqopensdkapiV3</string> <string>mqqopensdkapiV2</string> <string>mqqapiwallet</string> <string>mqqwpa</string> <string>mqqbrowser</string> <string>wtloginmqq2</string> <string>weixin</string> <string>wechat</string> </array>
qq登陸綁定,qq支付,qq分享
微信支付,微信登陸綁定
新浪登陸綁定
支付寶支付,支付寶登陸綁定
3.Bitcode問題(通俗解釋:在線版安卓ART模式)
報錯以下
ld: warning: directory not found for option '-F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/Developer/Library/Frameworks'
ld: -bundle and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together
clang: error: linker command failed with exit code 1 (use -v to see invocation)
緣由:Xcode7 及以上版本會默認開啓 bitcode 。
bitcode具體是什麼就不解釋了。
解決方法:
1.更新library使包含Bitcode,不然會出現以上的警告。
2.關閉Bitcode,簡單粗暴。
Build Settings」->」Enable Bitcode」改爲"NO"。
4.項目運行報錯以下
<Error>: CGContextSaveGState: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable. <Error>: CGContextTranslateCTM: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable. <Error>: CGContextRestoreGState: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable.
出錯緣由:設置app的狀態欄樣式的使用使用了舊的方式,在info.plist裏面設置了View controller-based status bar appearance爲NO,默認爲YES,通常式iOS6的時候使用這種方式,iOS7,8也兼容,可是到了iOS9就報了警告。
[[UIApplication sharedApplication]setStatusBarStyle:UIStatusBarStyleLightContent];
之前咱們經過上面代碼改變狀態了顏色,iOS9之後點進去看api發現以下說明
// Setting the statusBarStyle does nothing if your application is using the default UIViewController-based status bar system. @property(readwrite, nonatomic) UIStatusBarStyle statusBarStyle NS_DEPRECATED_IOS(2_0, 9_0, "Use -[UIViewController preferredStatusBarStyle]"); - (void)setStatusBarStyle:(UIStatusBarStyle)statusBarStyle animated:(BOOL)animated NS_DEPRECATED_IOS(2_0, 9_0, "Use -[UIViewController preferredStatusBarStyle]");
解決辦法:
修改方式將View controller-based status bar appearance設置爲YES,而後使用新的方式來實現狀態欄的樣式。
- (UIStatusBarStyle)preferredStatusBarStyle; - (UIViewController *)childViewControllerForStatusBarStyle; - (void)setNeedsStatusBarAppearanceUpdate
2015.09.21更新
5 directory not found for option問題
警告以下:
ld: warning: directory not found for option '-F/Applications/Xcode 7.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator9.0.sdk/Developer/Library/Frameworks'
問題緣由:Xcode7將framworks位置改變了。
解決方法:
點擊項目,選擇 Targets->xxxTests
選擇build setting ,找到 Frameworks Search Path 或者 Library Search Paths
刪除$(SDKROOT)/Developer/Library/Frameworks,
或者使用$(PLATFORM_DIR)/Developer/Library/Frameworks替換
暫時就這些,還有其餘問題會繼續更新
若是大家還有其餘問題請參考:https://github.com/ChenYilong/iOS9AdaptationTips