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

@import url(http://i.cnblogs.com/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/css/cuteeditor.css);

上一篇:Java实现常见的排序算法


下一篇:Hash(MD5校验工具)