首页 > 移动平台 > 详细

iOS 9变化的特性

时间:2015-09-24 10:59:21      阅读:321      评论:0      收藏:0      [点我收藏+]
  • http请求的变成了https

在Info.plist中添加NSAppTransportSecurity类型Dictionary

在NSAppTransportSecurity下添加NSAllowsArbitraryLoads类型Boolean,值设为YES

  • 汉字转Url码问题
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卡住问题(这个不是因为iOS 9)

换成pod install --verbose --no-repo-update



iOS 9变化的特性

原文:http://www.cnblogs.com/asidunmabing/p/4834458.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!