iOS AFNetworking 框架导入报错解决方法

错误:

1. Use of undeclared identifier ‘kSecFormatUnknown‘

2. Use of undeclared identifier ‘kSecItemPemArmour‘

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

 

查询后发现, 解决方法有如下两种:

第一种: 通过CocoaPods安装AFNetworking框架, 具体请参考:

https://github.com/AFNetworking/AFNetworking/wiki/Getting-Started-with-AFNetworking

 

第二种: 在项目Pch文件中添加如下代码:

#ifndef TARGET_OS_IOS

#define TARGET_OS_IOS TARGET_OS_IPHONE

#endif

#ifndef TARGET_OS_WATCH

#define TARGET_OS_WATCH 0

#endif

你可能感兴趣的:(移动开发-iOS)