陌道伊城

优秀养成于习惯!优秀是一种习惯!每天一点点,努力!坚持!

导航

iOS9的一些问题

1.App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app‘s Info.plist file.

 解决:  在iOS9 beta中,苹果将原http协议改成了https协议,使用 TLS1.2 SSL加密请求数据。
解决方法:

在info.plist 加入key

<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>


2<Error>: CGContextSaveGState: invalid context 0x0. If you want to see the backtrace, please set CG_C

 解决:  info.plist 中删掉key UIViewControllerBasedStatusBarAppearance

posted on 2015-09-22 10:55  陌道伊城  阅读(160)  评论(0编辑  收藏  举报