在Info.plist中添加NSAppTransportSecurity类型Dictionary。
在NSAppTransportSecurity下添加NSAllowsArbitraryLoads类型Boolean,值设为YES
1 NSString *urlStr = [NSString stringWithFormat:kImgHeadUrl,self.img[i]]; 2 //iOS9之前可以用下面代码将汉字转化为Url码 3 //urlStr = [urlStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; 4 //iOS9.0之后,上面的方法禁用了,可以用下面的代替 5 urlStr = [urlStr stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLFragmentAllowedCharacterSet]];
换成pod install --verbose --no-repo-update
原文:http://www.cnblogs.com/asidunmabing/p/4834458.html