<一>关于提示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.

解决方法:

NSAppTransportSecurity

   NSAllowsArbitraryLoads ->YES

提示错误:

-canOpenURL: failed for URL: "schme://" - error: "This app is not allowed to query for scheme wechat"

在iOS 9中必须将url加入白名单中.

<key>LSApplicationQueriesSchemes</key>
<array>
<string>wechat</string>
</array>

相关文章:

  • 2022-01-25
  • 2022-01-14
  • 2022-12-23
  • 2022-12-23
  • 2021-04-10
  • 2021-06-14
  • 2021-12-15
  • 2022-12-23
猜你喜欢
  • 2021-12-04
  • 2021-12-31
  • 2021-06-30
  • 2022-12-23
  • 2021-10-26
相关资源
相似解决方案