NSURLConnection finished with error - code -1022

前端 未结 5 693
南笙
南笙 2020-12-15 06:47

Guys i try to learn webview it can\'t load give me error like:

NSURLConnection finished with error - code -1022

- (voi         


        
5条回答
  •  醉酒成梦
    2020-12-15 07:45

    You are getting this error because you are not using https url. To fix follow below steps:

    • Right click on info.plist file.
    • Open As Source code.
    • Add below line just before /dict:

      NSAppTransportSecurity
      
          NSAllowsArbitraryLoads
          
      
      

提交回复
热议问题