ios afnetworking需要添加哪些依赖库

2026年09月27日 22:21
有1个网友回答
网友(1):

1首先要把AFNETWORK 导入到你的工程中 就是那19个文件afnetworking 文件夹

2然后还要在工程里面引出2个新的framwork ,SystemConfiguration/System和MobileCoreServices

3很重要的一步在你的In "YOURPROJECTNAME-Prefix.pch" file include this code

导入
#import
#import

基本上就是这样子然后你就可以使用了 你的工程需要什么功能就在你的class里面的头文件添加什么功能的引用

如果你出现了下面AFNETWORKING的警告的话请重复安装上面的
"

#else
#warning SystemConfiguration framework not found in project, or not included in precompiled header. Network reachability functionality will not be available.
#endif

#ifndef __UTTYPE__
#if __IPHONE_OS_VERSION_MIN_REQUIRED
#warning MobileCoreServices framework not found in project, or not included in precompiled header. Automatic MIME type detection when uploading files in multipart requests will not be available.
#else
#warning CoreServices framework not found in project, or not included in precompiled header. Automatic MIME type detection when uploading files in multipart requests will not be available.
#endif
#endif

"