NSURLSession/NSURLConnection HTTP load failed on iOS 9

前端 未结 13 1410
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-22 05:20

Tried to run my existing app on iOS9 but getting failure while using AFURLSessionManager.

__block NSURLSessionDataTask *task = [self.sessionMana         


        
13条回答
  •  渐次进展
    2020-11-22 05:57

    You should add App Transport Security Settings to info.plist and add Allow Arbitrary Loads to App Transport Security Settings

    NSAppTransportSecurity
        
            NSAllowsArbitraryLoads
            
        
    

提交回复
热议问题