常用配置Tips

1. iOS9中HTTPS->HTTP
//全部允许
 NSAppTransportSecurity
  
        NSAllowsArbitraryLoads
        
  
//添加例外
    NSAppTransportSecurity
    
        NSExceptionDomains
        
            qq.com
            
                NSIncludesSubdomains
                
            
            sina.com.cn
            
                NSIncludesSubdomains
                
            
        
    

你可能感兴趣的:(常用配置Tips)