info.plist中,你懂的选项(持续更新)

  1. 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设置。
    NSAppTransportSecurity/key>

    NSAllowsArbitraryLoads

  2. 需要在后台使用定位功能
    NSLocationAlwaysUsageDescription
    需要后台定位
    UIBackgroundModes

    location

你可能感兴趣的:(info.plist中,你懂的选项(持续更新))