iOS 使用AFNetworking

简介: <p style="padding-top:0px; padding-bottom:0px; margin-top:0px; margin-bottom:0px; clear:both; height:auto; overflow:hidden; color:rgb(80,80,80); font-family:宋体,'Arial Narrow',arial,serif; font-siz

一 下载: 网址 -- github

二 环境:

  需要引入的库 - CoreLocation.framework

  SystemConfiguration.framework

  MobileCoreServices.framework

  Security.framework

  需要在 ARC 的环境下 - 非 ARC 的工程中 - 请添加 -fobjc-arc 

三 结构:

1 : AFHTTPClient  --   提供了一个方便的网络交互接口,包括默认头,身份验证,是否连接到网络,批量处理操作,查询字符串参数序列化,已经多种表单请求

2 : AFHTTPRequestOperation -- 

和它得子类可以基于http状态和内容列下来区分是否成功请求了

3 : AFURLConnectionOperation -- 

和它的子类继承NSOperation的,允许请求被取消,暂停/恢复和由NSOperationQueue进行管理。

4 : AFURLConnectionOperation -- 

可以让你轻松得完成上传和下载,处理验证,监控上传和下载进度,控制的缓存。

四 使用 :

用法场景 1 : 请求api数据

方法1 --

创建一个 AFHTTPClient 实例

AFHTTPClient * client = [[AFHTTPClient alloc] initWithBaseURL:[NSURL URLWithString:@"http://api.jiepang.com"]];

// 这里一定要有一个 baseURL - 不然会抛出一个异常 -- 

创建一个 NSURLRequest 实例

NSDictionary * params = @{@"apiver": @"4",@"id" : @"830755858",@"extra_info": @"1"};

    NSURLRequest * request = [client requestWithMethod:@"POST"

                                              path:@"users/show"

                                        parameters:params];

    @param  method 网络请求方式,比如 GET,POST,PUT,DELETE , 不能为 nil -- 

    @param  path   和 baseURL 组合成为一个 url  -- 通俗的说,就是我们调用的接口 -- 比如,我想调用http://api.jiepang.com/users/show,这个接口 -- 那么 baseURL 为 http://api.jiepang.com -- path 为users/show 

    @param  parameters 网络请求参数 -- http://api.jiepang.com/v1/users/show?id=123 -- id=123 就是这个参数

创建一个 AFHTTPRequestOperation 实例进行网络链接

AFHTTPRequestOperation * operation = [client HTTPRequestOperationWithRequest:request success:^(AFHTTPRequestOperation *operation, id responseObject) {

        

        NSLog(@"success obj == %@",responseObject);

        

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

        

        NSLog(@"faild , error == %@ ", error);

    }];

    [operation start];

    这样 - 一次简单的调用就OK了 - 

    当然也可以,用封装好的其它方法 -- 

    - (void)getPath:(NSString *)path

     parameters:(NSDictionary *)parameters

        success:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success

        failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure;

    - (void)postPath:(NSString *)path

      parameters:(NSDictionary *)parameters

         success:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success

         failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure;

    - (void)putPath:(NSString *)path

     parameters:(NSDictionary *)parameters

        success:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success

        failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure;

    - (void)deletePath:(NSString *)path

        parameters:(NSDictionary *)parameters

           success:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success

           failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure;

- (void)patchPath:(NSString *)path

parameters:(NSDictionary *)parameters

 success:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success

 failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure;

省去了组装 Resquest 的时间  --

比如 - 

方法二 --

    [client getPath:path

     parameters:params

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

                   NSString * obj = [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding];

                   NSLog(@"obj == %@",obj);

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

            NSLog(@"faild -- ");

        }];

    这和上面的效果是一样的 -- 

    我们看到,前面返回的数据全部为 NSdata - 为我们添加了麻烦 -- 而且我们大部分的 api 返回数据都为 json -- 

    同样 - 我们可以用 AFHTTPRequestOperation 的子类 AFJSONRequestOperation 来替代 -- 

    方法三 -- 

       NSDictionary * params = @{@"apiver": @"4",@"id" : @"830755858",@"extra_info": @"1"};

    

    

AFHTTPClient * client = [[AFHTTPClient alloc] initWithBaseURL:[NSURL URLWithString:@"http://api.jiepang.com"]];

    

    NSURLRequest * request = [client requestWithMethod:@"POST"

                                                  path:@"users/show"

                                            parameters:params];

    

    

    AFJSONRequestOperation * operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {

        

        NSLog(@"json == %@",JSON);

    } failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {

        

        NSLog(@"faild -- ");

    }];

    

    [operation start];

    使用场景 2 : 异步加载图片 

    AFImageRequestOperation 是继承自 AFHTTPRequestOperation -- 所以 - 方法大同小异 -- 

    NSString * url = @"http://c.hiphotos.baidu.com/album/w=2048/sign=1d7ca85bac345982c58ae29238cc30ad/f2deb48f8c5494ee7abe33362cf5e0fe99257e04.jpg";

    // 这是一个大美女

    

    创建 request

    NSURLRequest * request = [NSURLRequest requestWithURL:[NSURL URLWithString:url]

                                              cachePolicy:NSURLRequestReloadIgnoringLocalCacheData

                                          timeoutInterval:30];

    

    AFImageRequestOperation * operation = [AFImageRequestOperation imageRequestOperationWithRequest:request

                                                                               imageProcessingBlock:^UIImage *(UIImage *image) {

                                                                                   

                                                                                   UIImage * tempImage = [UIImage imageWithCGImage:

                                                                                                         CGImageCreateWithImageInRect(image.CGImage,ake(0, 0, image.size.width, image.size.height/2.0))];

                                                                                   

                                                                                   return tempImage;

                                                                                   

                                                                               } success:^(NSURLRequest *request, NSHTTPURLResponse *response, UIImage *image) {

                                                                                   

                                                                                   NSLog(@"reload image success ");

                                                                                   

                                                                                   _imageView.image = image;

                                                                               } failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error) {

                                                                                   

                                                                                   NSLog(@"reload image faild , error == %@ ",error);

                                                                                   

                                                                               }];

    

    [operation start];

    这个方法里有三个block ,success 和 failure 不说 -- processimageBlock -- 是在 图片加载完后,对 图片 处理的 block ,可以为 nil ,在 success 之前调用  --

目录
相关文章
|
开发者 iOS开发
iOS开发 - 用AFNetworking实现https单向验证,双向验证
iOS开发 - 用AFNetworking实现https单向验证,双向验证
451 0
iOS开发 - 用AFNetworking实现https单向验证,双向验证
|
移动开发 iOS开发
iOS开发:日志记录及AFNetworking请求
本篇文章主要目的是为了将用户操作习惯记录到本地文件,然后定期或者根据实际需要打包压缩上传到服务器,用以处理用户在闪退的时候,或需要详细了解具体某个用户在这一段时间的操作习惯。由于要压缩上传本地日志,顺道集成了AFNetWorking了post和get的接口请求,以及请求是接口失败后,错误信息显示,这个在开发的时候特别方便,后台可以在根据这些错误日志查询对应的问题。
350 0
|
JavaScript iOS开发 数据格式
iOS开发之AFNetWorking初次使用会报错的坑
第一次用 CocoPods 安装好了 AFNetWorking 后,无论使用 Get 还是 Post,总是直接进入 failure 的 block,错误信息如下: error=Error Domain=com.
984 0
|
XML JSON 数据格式
iOS开发网络数据之AFNetworking使用
<p class="p1" style="color:rgb(51,51,51); font-family:Arial; font-size:14px; line-height:26px"> 如何选择AFNetworking版本</p> <p class="p2" style="color:rgb(51,51,51); font-family:Arial; font-size:14px
1533 0
|
2月前
|
开发框架 前端开发 Android开发
安卓与iOS开发中的跨平台策略
在移动应用开发的战场上,安卓和iOS两大阵营各据一方。随着技术的演进,跨平台开发框架成为开发者的新宠,旨在实现一次编码、多平台部署的梦想。本文将探讨跨平台开发的优势与挑战,并分享实用的开发技巧,帮助开发者在安卓和iOS的世界中游刃有余。
|
19天前
|
iOS开发 开发者 MacOS
深入探索iOS开发中的SwiftUI框架
【10月更文挑战第21天】 本文将带领读者深入了解Apple最新推出的SwiftUI框架,这一革命性的用户界面构建工具为iOS开发者提供了一种声明式、高效且直观的方式来创建复杂的用户界面。通过分析SwiftUI的核心概念、主要特性以及在实际项目中的应用示例,我们将展示如何利用SwiftUI简化UI代码,提高开发效率,并保持应用程序的高性能和响应性。无论你是iOS开发的新手还是有经验的开发者,本文都将为你提供宝贵的见解和实用的指导。
111 66
|
6天前
|
存储 监控 API
app开发之安卓Android+苹果ios打包所有权限对应解释列表【长期更新】-以及默认打包自动添加权限列表和简化后的基本打包权限列表以uniapp为例-优雅草央千澈
app开发之安卓Android+苹果ios打包所有权限对应解释列表【长期更新】-以及默认打包自动添加权限列表和简化后的基本打包权限列表以uniapp为例-优雅草央千澈
|
30天前
|
开发框架 Android开发 iOS开发
安卓与iOS开发中的跨平台策略:一次编码,多平台部署
在移动应用开发的广阔天地中,安卓和iOS两大阵营各占一方。随着技术的发展,跨平台开发框架应运而生,它们承诺着“一次编码,到处运行”的便捷。本文将深入探讨跨平台开发的现状、挑战以及未来趋势,同时通过代码示例揭示跨平台工具的实际运用。
|
1月前
|
Java 调度 Android开发
安卓与iOS开发中的线程管理差异解析
在移动应用开发的广阔天地中,安卓和iOS两大平台各自拥有独特的魅力。如同东西方文化的差异,它们在处理多线程任务时也展现出不同的哲学。本文将带你穿梭于这两个平台之间,比较它们在线程管理上的核心理念、实现方式及性能考量,助你成为跨平台的编程高手。
|
2月前
|
存储 前端开发 Swift
探索iOS开发:从新手到专家的旅程
本文将带您领略iOS开发的奇妙之旅,从基础概念的理解到高级技巧的掌握,逐步深入iOS的世界。文章不仅分享技术知识,还鼓励读者在编程之路上保持好奇心和创新精神,实现个人成长与技术突破。