AFNetWorking的使用配置

来源:互联网 发布:个人软件开发合同书 编辑:程序博客网 时间:2024/06/06 15:03
1首先要把AFNETWORK 导入到你的工程中 就是那19个文件afnetworking 文件夹

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

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

导入
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>

基本上就是这样子然后你就可以使用了 你的工程需要什么功能就在你的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


"
0 0