- iOS9中新增App Transport Security(简称ATS)特性,主要是原来请求的时候用到的HTTP,都转向TLS1.2协议进行传输。这也意味着所有的HTTP协议都强制使用HTTPS协议进行传输。如果我们在iOS9下直接进行HTTP请求是会报
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.
系统会告诉我们不能直接使用HTTP进行请求,需要在Info.plist新增一段用于控制ATS的配置,告诉系统要走自定义的ATS设置。
<key>NSAppTransportSecurity/key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict> - 需要在后台使用定位功能
<key>NSLocationAlwaysUsageDescription</key>
<string>需要后台定位</string>
<key>UIBackgroundModes</key>
<array>
<string>location</string>
</array>
网友评论