zoukankan      html  css  js  c++  java
  • 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
  • 相关阅读:
    单调队列+二分 G
    dp cf 1700 最近几天的刷题
    dp 20190618
    dp 20190617
    dp cf 20190615
    dp cf 20190614
    powercli
    zabbix docker-weixin
    cenetos-大文件排序
    esxcli命令
  • 原文地址:https://www.cnblogs.com/modaoyicheng/p/4828320.html
Copyright © 2011-2022 走看看