码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发遇到的那些bug

时间:2017-04-17 14:25:15      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:inf   table   res   code   config   nbsp   size   type   insecure   

1.创建新项目用到 进行网络请求请求时,报下面的错: 
“App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app’s Info.plist file”

解决办法:

1、在Info.plist中添加 NSAppTransportSecurity 类型 Dictionary ;

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

 

2.使用AFNetworking 3.0+版本进行网络请求,报如下错误:

Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html" UserInfo={com.alamofire.serialization.response.error.response=<NSHTTPURLResponse: 0x60000002db00>

解决办法:

  AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];

  manager.responseSerializer = [AFHTTPResponseSerializer new];

  manager.responseSerializer.acceptableContentTypes = [NSSet setWithObjects:@"text/html", nil];

 

持续更新...

 

 

iOS开发遇到的那些bug

标签:inf   table   res   code   config   nbsp   size   type   insecure   

原文地址:http://www.cnblogs.com/grein/p/6722439.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!