AFNetworking是一个为 iOS 和 Mac OSX 制作的令人愉快的网络库

  • AFNetworking是一个为 iOS 和 Mac OSX 制作的令人愉快的网络库,它建立在URL 装载系统框架的顶层,内置在Cocoa里,扩展了强有力的高级网络抽象。它的模块架构被良好的设计,拥有丰富的功能,因此,使用起来,必定赏心悦目。

    @介绍
      1.支持HTTP请求和基于REST的网络服务(包括GET、POST、 PUT、DELETE等)

  •   2.支持ARC
  •   3.要求iOS 5.0及以上版本
  •   4.UIKit扩展
    @配置
    1.下载AFNetworking,将2个文件夹:AFNetworking和UIKit+AFNetworking拖入工程
    2.导入以下库文件:CFNetwork、Security、SystemConfiguration、MobileCoreServices
    3.如果你以前用的是1.0版本,那么AFNetworking 2.0 Migration Guide能帮助你
    4.如果你是用CocoaPods配置的,那么
    platform:ios,‘7.0‘
    pod"AFNetworking","~>2.0"
    @使用
    1.HTTP请求操作
    AFHTTPRequestOperationManager封装的共同模式与web应用程序通过HTTP通信,包括创建请求,响应序列化,网络可达性监控、运营管理和安全,以及请求。
    *GET请求
     
    view source
    print
    ?

    1.
    AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];

    2.
    [manager GET:@"http://example.com/resources.json" parameters:nil success:^(AFHTTPRequestOperation *operation, id responseObject) {

    3.
    NSLog(@"JSON: %@", responseObject);

    4.
    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {

    5.
    NSLog(@"Error: %@", error);

    6.
    }];

    *POST请求
     
    view source
    print
    ?

    1.
    AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];

    2.
    NSDictionary *parameters = @{@"foo": @"bar"};

    3.
    [manager POST:@"http://example.com/resources.json" parameters:parameters success:^(AFHTTPRequestOperation *operation, id responseObject) {

    4.
    NSLog(@"JSON: %@", responseObject);

    5.
    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {

    6.
    NSLog(@"Error: %@", error);

    7.
    }];

    *POST请求(多表)  
     
    view source
    print
    ?

    01.
    AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];

    02.
    NSDictionary *parameters = @{@"foo": @"bar"};

    03.
    NSURL *filePath = [NSURL fileURLWithPath:@"file://path/to/image.png"];

    04.
    [manager POST:@"http://example.com/resources.json" parameters:parameters constructingBodyWithBlock:^(id<AFMultipartFormData> formData) {

    05.
    [formData appendPartWithFileURL:filePath name:@"image" error:nil];

    06.
    } success:^(AFHTTPRequestOperation *operation, id responseObject) {

    07.
    NSLog(@"Success: %@", responseObject);

    08.
    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {

    09.
    NSLog(@"Error: %@", error);

    10.
    }];

    2.AFURLSessionManager(NSURLSession详细见网络编程(6))
    创建和管理制定的NSURLSession对象NSURLSessionConfiguration对象必须实现<NSURLSessionTaskDelegate>, <NSURLSessionDataDelegate>, <NSURLSessionDownloadDelegate>, <NSURLSessionDelegate>协议
    *创建一个下载任务
     
    view source
    print
    ?

    01.
    NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];

    02.
    AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration];

    03.

    04.
    NSURL *URL = [NSURL URLWithString:@"http://example.com/download.zip"];

    05.
    NSURLRequest *request = [NSURLRequest requestWithURL:URL];

    06.

    07.
    NSURLSessionDownloadTask *downloadTask = [manager downloadTaskWithRequest:request progress:nil destination:^NSURL *(NSURL *targetPath, NSURLResponse *response) {

    08.
    NSURL *documentsDirectoryURL = [[NSFileManager defaultManager] URLForDirectory:NSDocumentDirectory inDomain:NSUserDomainMask appropriateForURL:nil create:NO error:nil];

    09.
    return [documentsDirectoryURL URLByAppendingPathComponent:[response suggestedFilename]];

    10.
    } completionHandler:^(NSURLResponse *response, NSURL *filePath, NSError *error) {

    11.
    NSLog(@"File downloaded to: %@", filePath);

    12.
    }];

    13.
    [downloadTask resume];

    *创建一个上传任务  
     
    view source
    print
    ?

    01.
    NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];

    02.
    AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration];

    03.

    04.
    NSURL *URL = [NSURL URLWithString:@"http://example.com/upload"];

    05.
    NSURLRequest *request = [NSURLRequest requestWithURL:URL];

    06.

    07.
    NSURL *filePath = [NSURL fileURLWithPath:@"file://path/to/image.png"];

    08.
    NSURLSessionUploadTask *uploadTask = [manager uploadTaskWithRequest:request fromFile:filePath progress:nil completionHandler:^(NSURLResponse *response, id responseObject, NSError *error) {

    09.
    if (error) {

    10.
    NSLog(@"Error: %@", error);

    11.
    } else {

    12.
    NSLog(@"Success: %@ %@", response, responseObject);

    13.
    }

    14.
    }];

    15.
    [uploadTask resume];

    *创建一个带多表,进度的上传任务  
     
    view source
    print
    ?

    01.
    NSMutableURLRequest *request = [[AFHTTPRequestSerializer serializer] multipartFormRequestWithMethod:@"POST" URLString:@"http://example.com/upload" parameters:nil constructingBodyWithBlock:^(id<AFMultipartFormData> formData) {

    02.
    [formData appendPartWithFileURL:[NSURL fileURLWithPath:@"file://path/to/image.jpg"] name:@"file" fileName:@"filename.jpg" mimeType:@"image/jpeg" error:nil];

    03.
    } error:nil];

    04.

    05.
    AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration]];

    06.
    NSProgress *progress = nil;

    07.

    08.
    NSURLSessionUploadTask *uploadTask = [manager uploadTaskWithStreamedRequest:request progress:&progress completionHandler:^(NSURLResponse *response, id responseObject, NSError *error) {

    09.
    if (error) {

    10.
    NSLog(@"Error: %@", error);

    11.
    } else {

    12.
    NSLog(@"%@ %@", response, responseObject);

    13.
    }

    14.
    }];

    15.

    16.
    [uploadTask resume];

    *创建一个数据流Data任务  
     
    view source
    print
    ?

    01.
    NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];

    02.
    AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration];

    03.

    04.
    NSURL *URL = [NSURL URLWithString:@"http://example.com/upload"];

    05.
    NSURLRequest *request = [NSURLRequest requestWithURL:URL];

    06.

    07.
    NSURLSessionDataTask *dataTask = [manager dataTaskWithRequest:request completionHandler:^(NSURLResponse *response, id responseObject, NSError *error) {

    08.
    if (error) {

    09.
    NSLog(@"Error: %@", error);

    10.
    } else {

    11.
    NSLog(@"%@ %@", response, responseObject);

    12.
    }

    13.
    }];

    14.
    [dataTask resume];

    3.网络监测(一般会用另一个网络监测类,Reachability,还有JSON解析方法,反正我也一般不用,自行脑补)
    AFNetworkReachabilityManager监控网络领域的可达性,WWAN地址和WiFi接口.
    *当前网络状态
     
    view source
    print
    ?

    1.
    [[AFNetworkReachabilityManager sharedManager] setReachabilityStatusChangeBlock:^(AFNetworkReachabilityStatus status) {

    2.
    NSLog(@"Reachability: %@", AFStringFromNetworkReachabilityStatus(status));

    3.
    }];

  • *HTTP Manager 可达性  
     
    view source
    print
    ?

    01.
    NSURL *baseURL = [NSURL URLWithString:@"http://example.com/"];

    02.
    AFHTTPRequestOperationManager *manager = [[AFHTTPRequestOperationManager alloc] initWithBaseURL:baseURL];

    03.

    04.
    NSOperationQueue *operationQueue = manager.operationQueue;

    05.
    [manager.reachabilityManager setReachabilityStatusChangeBlock:^(AFNetworkReachabilityStatus status) {

    06.
    switch (status) {

    07.
    case AFNetworkReachabilityStatusReachableViaWWAN:

    08.
    case AFNetworkReachabilityStatusReachableViaWiFi:

    09.
    [operationQueue setSuspended:NO];

    10.
    break;

    11.
    case AFNetworkReachabilityStatusNotReachable:

    12.
    default:

    13.
    [operationQueue setSuspended:YES];

    14.
    break;

    15.
    }

    16.
    }];

    4.AFHTTPRequestOperation
    AFHTTPRequestOperation是使用HTTP或HTTPS协议的AFURLConnectionOperation的子类。
    它封装的获取后的HTTP状态和类型将决定请求的成功与否。虽然AFHTTPRequestOperationManager通常是最好的去请求的方式,但是AFHTTPRequestOpersion也能够单独使用。
    *GET请求
     
    view source
    print
    ?

    01.
    NSURL *URL = [NSURL URLWithString:@"http://example.com/resources/123.json"];

    02.
    NSURLRequest *request = [NSURLRequest requestWithURL:URL];

    03.
    AFHTTPRequestOperation *op = [[AFHTTPRequestOperation alloc] initWithRequest:request];

    04.
    op.responseSerializer = [AFJSONResponseSerializer serializer];

    05.
    [op setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {

    06.
    NSLog(@"JSON: %@", responseObject);

    07.
    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {

    08.
    NSLog(@"Error: %@", error);

    09.
    }];

    10.
    [[NSOperationQueue mainQueue] addOperation:op];

  • *批量多请求  
     
    view source
    print
    ?

    01.
    NSMutableArray *mutableOperations = [NSMutableArray array];

    02.
    for (NSURL *fileURL in filesToUpload) {

    03.
    NSURLRequest *request = [[AFHTTPRequestSerializer serializer] multipartFormRequestWithMethod:@"POST" URLString:@"http://example.com/upload" parameters:nil constructingBodyWithBlock:^(id<AFMultipartFormData> formData) {

    04.
    [formData appendPartWithFileURL:fileURL name:@"images[]" error:nil];

    05.
    }];

    06.

    07.
    AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];

    08.

    09.
    [mutableOperations addObject:operation];

    10.
    }

    11.

    12.
    NSArray *operations = [AFURLConnectionOperation batchOfRequestOperations:@[...] progressBlock:^(NSUInteger numberOfFinishedOperations, NSUInteger totalNumberOfOperations) {

    13.
    NSLog(@"%lu of %lu complete", numberOfFinishedOperations, totalNumberOfOperations);

    14.
    } completionBlock:^(NSArray *operations) {

    15.
    NSLog(@"All operations in batch complete");

    16.
    }];

    17.
    [[NSOperationQueue mainQueue] addOperations:operations waitUntilFinished:NO];

  • @其他资料

延伸阅读:

时间: 2024-10-25 22:51:13

AFNetworking是一个为 iOS 和 Mac OSX 制作的令人愉快的网络库的相关文章

C++实现,支持跨平台(Windows,Android,IOS),支持跨语言(C++,C#,Java)的网络库

这个网络库是在 CppNetworkLibrary(http://www.cnblogs.com/winter-yu/p/4688481.html )的基础之上做的一些优化与调整. 具体的亮点如下: 1,支持跨跨平台,包括主流的Windows,Android,IOS,Linux等等. 2,跨语言,客户端支持C++,C#,Java.服务端目前只支持C++. 3,数据包增加了加密及压缩功能,密码会动态随机修改,而不是双方都使用固定密码,保证了数据包的传输安全. 4,客户端支持P2P的消息传输,而不需

bsd socket 简单封装。支持android、ios、mac osx

cocos2d-x官方没有封装原生socket,只提供了websocket,如果我们需要socket,不同团队有不同的造轮子的方案,其中使用Asio库的比较多,但是Asio库太过于庞大,我不太想用.其实只需要简单封装一下bsd socket就好了,几十行代码而已. 注意如果在android中测试,需要添加网络访问权限,而且不能在主线程中使用. 贴一发代码,只是简单测试了下,如果有问题再慢慢完善. 1 #ifndef __cpp_test__Socket__ 2 #define __cpp_tes

XE6移动开发环境搭建之IOS篇(7):在Mac OSX 10.8中安装Xcode4.6.3(有图有真相)

XE6移动开发环境搭建之IOS篇(7):在Mac OSX 10.8中安装Xcode4.6.3(有图有真相) 2014-08-23 21:37 网上能找到的关于Delphi XE系列的移动开发环境的相关文章甚少,本文尽量以详细的图文内容.傻瓜式的表达来告诉你想要的答案. 在安装Xcode前,我们先了解下Mac下如何卸载U盘!在VM9下,同一时间内,一个物理设备只能由一个系统去独占,无论是物理机还是虚拟机.我们可以了解一下虚拟机加载U盘的规则:    1.在虚拟机中加载U盘时,会自动将U盘从Wind

XE6移动开发环境搭建之IOS篇(4):VMware9里安装Mac OSX 10.8(有图有真相)

XE6移动开发环境搭建之IOS篇(4):VMware9里安装Mac OSX 10.8(有图有真相) 2014-08-18 21:10 网上能找到的关于Delphi XE系列的移动开发环境的相关文章甚少,本文尽量以详细的内容.傻瓜式的表达来告诉你想要的答案. 以下内容比较长,我们努力地图解每一个步骤,没有耐心的观众可以忽略前27步,直接看第28步最终结果.--------------------------------------------------------------- 1.在虚拟机主界

XE6移动开发环境搭建之IOS篇(6):设置Mac OSX的网络。(有图有真相)

XE6移动开发环境搭建之IOS篇(6):设置Mac OSX的网络.(有图有真相) 2014-08-23 21:37 网上能找到的关于Delphi XE系列的移动开发环境的相关文章甚少,本文尽量以详细的图文内容.傻瓜式的表达来告诉你想要的答案. 我们配置一下MAC的IP,给定一个固定的内网IP,以便我们的XE6能更好地连接它!--------------------------------------------------------------- 1.打开虚拟机,在MAC里,点一下桌面(星空图

XE6移动开发环境搭建之IOS篇(5):解决Windows和虚拟机下Mac OSX的共享问题(有图有真相)

XE6移动开发环境搭建之IOS篇(5):解决Windows和虚拟机下Mac OSX的共享问题(有图有真相) 2014-08-20 20:28 网上能找到的关于Delphi XE系列的移动开发环境的相关文章甚少,本文尽量以详细的内容.傻瓜式的表达来告诉你想要的答案. 在安装XE6 PAServer前,我们先解决Windows和虚拟机下Mac的文件共享问题,由于虚拟机和我们安装的XE6是同一台电脑,所以此问题很好解决.网上相传有很多的共享大法,但是在WIN7这种权限管制得过份的系统下显得相对复杂了,

XE6移动开发环境搭建之IOS篇(7):在Mac OSX 10.8中安装XE6的PAServer(有图有真相)

XE6移动开发环境搭建之IOS篇(7):在Mac OSX 10.8中安装XE6的PAServer(有图有真相) 2014-08-22 21:06 网上能找到的关于Delphi XE系列的移动开发环境的相关文章甚少,本文尽量以详细的内容.傻瓜式的表达来告诉你想要的答案. 在安装PAServer前,我们先配置一下MAC的IP,给定一个固定的内网IP,以便我们的XE6能更好地连接它!------------------------------------------------------------

Qt ,mac osx ios x11 高清屏,视网膜的支持

Qt 5.0中添加了对于retina显示的基本支持.即将到来的Qt 5.1中提供了新的API和缺陷修复,对于这一问题进行了改进.Qt 4.8也获得了良好的支持,我们反向移植了一些Qt 5的补丁. 尽管这些实现的努力和Mac以及iOS程序员最为相关,但是来看一看其它平台是如何处理高DPI显示这一问题,也是很有趣的.这里主要有两种方式: 基于DPI缩放--Win32 GDI和KDE.在这种方式中,应用程序在全物理设备分辨率下工作,使用系统提供的一个DPI设定或者缩放因子,用于缩放布局.字体通常会被操

XE6移动开发环境搭建之IOS篇(6):安装XE6的PAServer到Mac OSX 10.8中(有图有真相)

网上能找到的关于Delphi XE系列的移动开发环境的相关文章甚少,本文尽量以详细的内容.傻瓜式的表达来告诉你想要的答案. 在安装PAServer前,我们先配置一下MAC的IP,以便我们的XE6能更好地连接它!--------------------------------------------------------------- 1.打开虚拟机,在MAC里,点一下桌面(星空图随便某个地方),在Finder中选择'前往','应用程序'. 2.在应用程序窗口里双击'系统偏好设置'. 3.双击'