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

AFNetWoring导入报错解决方案

时间:2015-11-17 12:55:11      阅读:433      评论:0      收藏:0      [点我收藏+]

标签:

第一个当报cannot find interface declaration for ‘UIImage或者use of undeclared identifier ‘UIImage‘时我们要在报错页面导入这个框架

‘#import

第二个错误 在AFSecurityPolicy.m这个类中,会报这样三个错误

1. Use of undeclared identifier ‘kSecFormatUnknown‘

2. Use of undeclared identifier ‘kSecItemPemArmour‘

3. Implicit declaration of function ‘SecItemExport‘ is invalid in C99

解决的方案为:

25//#if !TARGET_OS_IOS && !TARGET_OS_WATCH

#if !defined(__IPHONE_OS_VERSION_MIN_REQUIRED)

44//#if TARGET_OS_IOS || TARGET_OS_WATCH

#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED)

第三个如果用的是2.0版本的在数据请时有报错

解决方法:

在AFNetworking 2.0 默认不支持text/html

AFURLResponseSerialization.m -> self.acceptableContentTypes = [NSSet setWithObjects:@"application/json", @"text/json",

@"text/javascript", nil]; 添加 @"text/html"

AFNetWoring导入报错解决方案

标签:

原文地址:http://www.cnblogs.com/daijiahong/p/4971197.html

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