下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。
内存溢出小编现在分享给大家,也给大家做个参考。
一、早前的几个网络框架 1、ASI框架: http终结者.很牛, 但是有BUG, 已经停止更新. 2、MKNetworkKit (印度人写的). 3、AFN一直还在更新.地址: https://github.com/AFNetworking/AFNetworking *AFN专注与网络数据传输,以及网络中多线程的处理.
1、AFN特性 : *登录传参数时,传递字典即可.(键名为参数名,键值为参数值). *自动到子线程中执行,执行完后返回主线程. *返回的结果自动序列化为NSDictionary.
2、使用AFN注意 : *AFhttpRequestoperationManager封装了通过http协议与Web应用程序进行通讯的常用方法.(这个实例化的时候不是单例, 因为没有shared字) *包括创建请求/响应序列化/网络监控/数据安全. *方法等都是以AF开头的.
3、AFN能做的 (网络中的都涵盖了): *GET/POST/PUT/DELETE/head请求. *JsON数据解析/PList数据解析.(不支持XML数据解析) *POSTJsON. *上传/下载.
4、使用步骤 : (可参考说明文档) 1.首先需要实例化一个请求管理器AFhttpRequestoperationManager. 2.设置请求的数据格式:默认是二进制.(不是可改) *AFhttpRequestSerializer(二进制) *AFJsONRequestSerializer(JsON) *AFPropertyListRequestSerializer(PList) 3.设置响应的数据格式:默认是JsON.(不是可改) *AFhttpResponseSerializer(二进制) *AFJsONResponseSerializer(JsON) *AFPropertyListResponseSerializer(PList) *AFXMLParserResponseSerializer(XML) *AFImageResponseSerializer(Image) *AFCompoundResponseSerializer(组合的) 4.如果响应者的MIMEType不正确,就要修改acceptableContentTypes. 5.调用方法,发送响应的请求(GET/POST...).
[objc] view plain copy #pragma mark - get/post登录 - (voID)getLogin { //1.管理器 AFhttpRequestoperationManager *manager = [AFhttpRequestoperationManager manager]; //2.设置登录参数 NSDictionary *dict = @{ @"username":@"xn", @"password":@"123" }; //3.请求 [manager GET:@"http://localhost/login.PHP" parameters:dict success: ^(AFhttpRequestoperation *operation, ID responSEObject) { NSLog(@"GET --> %@, %@", responSEObject, [NSThread currentThread]); //自动返回主线程 } failure: ^(AFhttpRequestoperation *operation, NSError *error) { NSLog(@"%@", error); }]; } /** * 和上面的GET用法完全一样, 只有一个POST参数不一样 */ - (voID)postLogin { //1.管理器 AFhttpRequestoperationManager *manager = [AFhttpRequestoperationManager manager]; //2.设置登录参数 NSDictionary *dict = @{ @"username":@"xn", @"password":@"123" }; //3.请求 [manager POST:@"http://localhost/login.PHP" parameters:dict success: ^(AFhttpRequestoperation *operation, ID responSEObject) { NSLog(@"POST --> %@, error); }]; }
AFN进行网络数据解析,获取PList,JsON,XML(AFN不支持自动解析XML,有专门的框架去做,如SAX,PulL,KissXML等) [objc] view plain copy #pragma mark - get 数据解析 - (voID)getJsON { //1.请求管理器 AFhttpRequestoperationManager *manager = [AFhttpRequestoperationManager manager]; //2.发起请求 [manager GET:@"http://localhost/vIDeos.Json" parameters:nil success: ^(AFhttpRequestoperation *operation, ID responSEObject) { NSLog(@"%@", responSEObject); } failure: ^(AFhttpRequestoperation *operation, error); }]; } /** * 不支持XML数据解析 */ - (voID)getXML { //1.管理器 AFhttpRequestoperationManager *manager = [AFhttpRequestoperationManager manager]; //2.设置返回数据类型 manager.responseSerializer = [AFXMLParserResponseSerializer serializer]; //先实例化一下 //3.发起请求 [manager GET:@"http://localhost/vIDeos.xml" parameters:nil success: ^(AFhttpRequestoperation *operation, error); }]; } - (voID)getPList { //1.管理器 AFhttpRequestoperationManager *manager = [AFhttpRequestoperationManager manager]; //2.设置response类型 manager.responseSerializer = [AFPropertyListResponseSerializer serializer]; //是Response, 别写成request了. 修改为pList类型. manager.responseSerializer.acceptableContentTypes = [NSSet setWithObject:@"text/plain"]; //这个可以直接往框架里面修改. //3.请求 [manager GET:@"http://localhost/vIDeos.pList" parameters:nil success: ^(AFhttpRequestoperation *operation, error); }]; }
用AFN来POST JsON数据,上传、下载等。(上传、下载主页说明上有https://github.com/AFNetworking/AFNetworking) [objc] view plain copy #pragma mark - post Json数据与上传文件等 - (voID)postJsON { //1.管理器 AFhttpRequestoperationManager *manager = [AFhttpRequestoperationManager manager]; //2.设定类型. (这里要设置request-response的类型) manager.requestSerializer = [AFJsONRequestSerializer serializer]; manager.responseSerializer = [AFhttpResponseSerializer serializer]; //这个决定了下面responSEObject返回的类型 // manager.responseSerializer = [AFJsONResponseSerializer serializer]; // manager.responseSerializer.acceptableContentTypes = [NSSet setWithObject:@"text/plain"]; //2.设置登录参数 NSDictionary *dict = @{ @"username":@"xn", @"password":@"123" }; //3.发送请求 [manager POST:@"http://localhost/postJson.PHP" parameters:dict success: ^(AFhttpRequestoperation *operation, ID responSEObject) { // NSLog(@"postJson--> %@", responSEObject); //这样显示JsON的话需要设置text/plain Nsstring *result = [[Nsstring alloc] initWithData:responSEObject enCoding:NSUTF8StringEnCoding]; NSLog(@"%@",result); } failure: ^(AFhttpRequestoperation *operation, error); }]; }
以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
总结以上是内存溢出为你收集整理的iOS网络 *** 作与AFNetworking全部内容,希望文章能够帮你解决iOS网络 *** 作与AFNetworking所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)