iOS9適配中的各種問題

來源:互聯網
上載者:User

標籤:

1、http在ios9上不能在使用、需要進行配置、

the resource could not be loaded because the app transport security policy requires the use of a secure connection

資源不能被載入,因為該應用程式傳輸的安全性原則要求使用安全連線

iOS9引入了新特性App Transport Security (ATS)。詳情:App Transport Security (ATS)

新特性要求App內訪問的網路必須使用HTTPS協議。意思是Api介面以後必須是HTTPS
但是現在公司的項目使用的是HTTP協議,使用私人加密方式保證資料安全。現在也不能馬上改成HTTPS協議傳輸。

暫時解決辦法:

在Info.plist中添加NSAppTransportSecurity類型Dictionary。
在NSAppTransportSecurity下添加NSAllowsArbitraryLoads類型Boolean,值設為YES

2、tableView
原本好的項目用xcode7一編譯,tableView重新整理出了問題 ,[tableView reloadData]無效 有一行cell明明改變了但是重新整理不出來。 感覺可能是這個方法和某種新加的特性衝突了,猜測可能是reloadData的操作被延遲到下一個RunLoop執行最終失效。

解決的方法是,注釋[tableView reloadData],改用局部重新整理,問題居然就解決了。
[self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationNone];

3、設定信任

這一條只和企業級應用或inhose 有關,和AppStore渠道的應用無關。
在iOS8隻是彈出一個窗問你是否需要讓手機信任這個應用,但是在iOS9卻直接禁止,如果真的想信任需要自己去手動開啟。類似於Mac系統從未知開發人員處下載的dmg直接打不開,然後要到系統喜好設定的安全性與隱私手動開啟。
 使用者需要去 設定---》通用---》描述檔案 裡面自行添加信任。


4、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替換

5、UIStatusBarStyle的變化

項目運行報錯如下

<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


6、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)
Bitcode報錯

原因:Xcode7 及以上版本會預設開啟 bitcode 。
bitcode具體是什麼就不解釋了。

解決方案:
1.更新library使包含Bitcode,否則會出現以上問題。
2.關閉Bitcode,簡單粗暴。

Build Settings”->”Enable Bitcode”改成”NO”。

iOS9適配中的各種問題

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.