afnetworkingafnetworking 需要引入什么类库

afnetworking  时间:2021-07-16  阅读:()

IOS开发使用Afnetworking如何在后台进行网络请求使用

如何通过URL获取json数据   第一种,利用AFJSONRequestOperation,官方网站上给的例子:   NSString *str=[NSString stringWithFormat:@"/stream/0/posts/stream/global"];   NSURL *url = [NSURL URLWithString:[str stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];   NSURLRequest *request = [NSURLRequest requestWithURL:url];   // 从URL获取json数据   AFJSONRequestOperation *operation1 = [AFJSONRequestOperation JSONRequestOperationWithRequest:ess:^(NSURLRequest *request, NSHTTPURLResponse *response, NSDictionary* JSON) {   NSLog(@"获取到的数据为:%@",JSON);   } failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id data) {   NSLog(@"发生错误!%@",error);   }];   [operation1 start];   第二种方法,利用AFHTTPRequestOperation 先获取到字符串形式的数据,然后转换成json格式,将NSString格式的数据转换成json数据,利用IOS5自带的json解析方法:   NSString *str=[NSString stringWithFormat:@"/stream/0/posts/stream/global"];   NSURL *url = [NSURL URLWithString:[str stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];   NSURLRequest *request = [NSURLRequest requestWithURL:url];   AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];   [operation ess:^(AFHTTPRequestOperation *operation, id responseObject) {   NSString *html = operation.responseString;   NSData* data=[html dataUsingEncoding:NSUTF8StringEncoding];   id dict=[NSJSONSerialization JSONObjectWithData:data options:0 error:nil];   NSLog(@"获取到的数据为:%@",dict);   }failure:^(AFHTTPRequestOperation *operation, NSError *error) {   NSLog(@"发生错误!%@",error);   }];   NSOperationQueue *queue = [[NSOperationQueue alloc] init];   [queue addOperation:operation];   如果发生Error Domain=NSURLErrorDomain Code=-1000 "bad URL" UserInfo=0x14defc80 {NSUnderlyingError=0x14deea10 "bad URL", NSLocalizedDescription=bad URL这个错误,请检查URL编码格式。

有没有进行stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding   如何通过URL获取图片   异步获取图片,通过队列实现,而且图片会有缓存,在下次请求相同的链接时,系统会自动调用缓存,而不从网上请求数据。

  UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0.0f, 100.0f, 100.0f, 100.0f)]; [imageView setImageWithURL:[NSURL URLWithString:@"/r4uwx.jpg"]placeholderImage:[UIImage imageNamed:@"placeholder-avatar"]]; [self.view addSubview:imageView];   上面的方法是官方提供的,还有一种方法,   NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"/wp-content/uploads/2013/01/scene.png"]];   AFImageRequestOperation *operation = [AFImageRequestOperation imageRequestOperationWithRequest:requestimageProcessingBlock:nil ess:^(NSURLRequest *request, NSHTTPURLResponse *response, UIImage *image) {   self.backgroundImageView.image = image;   } failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error) {   NSLog(@"Error %@",error);   }];   [operation start];   如果使用第一种URLWithString: placeholderImage:会有更多的细节处理,其实实现还是通过AFImageRequestOperation处理,可以点击URLWithString: placeholderImage:方法进去看一下就一目了然了。

所以我觉得还是用第一种好。

  如何通过URL获取plist文件   通过url获取plist文件的内容,用的很少,这个方法在官方提供的方法里面没有   NSString *weatherUrl = @"/buick/kls/Buickhousekeeper.plist";   NSURL *url = [NSURL URLWithString:[weatherUrl stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];   NSURLRequest *request = [NSURLRequest requestWithURL:url];   [AFPropertyListRequestOperation eptableContentTypes:[NSSet setWithObject:@"text/plain"]];   AFPropertyListRequestOperation *operation = [AFPropertyListRequestOperation propertyListRequestOperationWithRequest:request ess:^(NSURLRequest *request, NSHTTPURLResponse *response, id propertyList) {   NSLog(@"%@",(NSDictionary *)propertyList);   }failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id propertyList) {   NSLog(@"%@",error);   }];   [operation start];   如果稍不留神,可能就出现Error Domain=AFNetworkingErrorDomain Code=-1016 "Expected content type {(   "application/x-plist"   )}, got text/plain" UserInfo=0x16e91ce0 {NSLocalizedRecoverySuggestion=   ...   ...   , AFNetworkingOperationFailingURLRequestErrorKey= { }, NSErrorFailingURLKey=, NSLocalizedDescription=Expected content type {(   "application/x-plist"   )}, got text/plain, AFNetworkingOperationFailinponseErrorKey= { URL: } { status code: 200, headers {   "ept-Ranges" = bytes;   Connection = "keep-alive";   "Content-Length" = 974;   "Content-Type" = "text/plain";   Date = "Sat, 25 Jan 2014 07:29:26 GMT";   Etag = ""1014c2-3ce-4ee63e1c80e00"";   "Last-Modified" = "Wed, 25 Dec 2013 23:04:24 GMT";   Server = "nginx/1.4.2";   } }}   可能还会出现乱码,解决办法就是[AFPropertyListRequestOperation eptableContentTypes:[NSSet setWithObject:@"text/plain"]];   如何通过URL获取XML数据   xml解析使用AFXMLRequestOperation,需要实现苹果自带的NSXMLParserDelegate委托方法,XML中有一些不需要的协议格式内容,所以就不能像json那样解析,还得实现委托。

我之前有想过能否所有的XML链接用一个类处理,而且跟服务端做了沟通,结果很不方便,效果不好。

XML大多标签不同,格式也不固定,所以就有问题,使用json就要方便的多。

  第一步;在.h文件中加入委托NSXMLParserDelegate   第二步;在.m文件方法中加入代码   NSURL *url = [NSURL URLWithString:@"http://113.106.90.22:5244/sshopinfo"];   NSURLRequest *request = [NSURLRequest requestWithURL:url];   AFXMLRequestOperation *operation =   [AFXMLRequestOperation XMLParserRequestOperationWithRequest:request ess:^(NSURLRequest *request,NSHTTPURLResponse *response, NSXMLParser *XMLParser) {   XMLParser.delegate = self;   [XMLParser setShouldProcessNamespaces:YES];   [XMLParser parse];   }failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, NSXMLParser *XMLParser) {   NSLog(@"%@",error);   }];   [operation start];   第三步;在.m文件中实现委托方法   //在文档开始的时候触发   -(void)parserDidStartDocument:(NSXMLParser *)parser{   NSLog(@"解析开始!");   }   //解析起始标记   - (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict{   NSLog(@"标记:%@",elementName);   }   //解析文本节点   - (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string{   NSLog(@"值:%@",string);   }   //解析结束标记   - (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName{   NSLog(@"结束标记:%@",elementName);   }   //文档结束时触发   -(void) parserDidEndDocument:(NSXMLParser *)parser{   NSLog(@"解析结束!");

afnetworking 需要引入什么类库

http网络库是集XML解析,Json解析,网络图片下载,plist解析,数据流请求操作,上传,下载,缓存等网络众多功能于一身的强大的类库。

最新版本支持session,xctool单元测试。

网络获取数据一直是手机软件的重中之重,如果处理的不好

Hosteons - 限时洛杉矶/达拉斯/纽约 免费升级至10G带宽 低至年$21

Hosteons,一家海外主机商成立于2018年,在之前还没有介绍和接触这个主机商,今天是有在LEB上看到有官方发送的活动主要是针对LEB的用户提供的洛杉矶、达拉斯和纽约三个机房的方案,最低年付21美元,其特点主要在于可以从1G带宽升级至10G,而且是免费的,是不是很吸引人?本来这次活动是仅仅在LEB留言提交账单ID才可以,这个感觉有点麻烦。不过看到老龚同学有拿到识别优惠码,于是就一并来分享给有需...

Hostwinds:免费更换IP/优惠码美元VPS免费更换IP4.99,7月最新优惠码西雅图直连VPS

hostwinds怎么样?2021年7月最新 hostwinds 优惠码整理,Hostwinds 优惠套餐整理,Hostwinds 西雅图机房直连线路 VPS 推荐,目前最低仅需 $4.99 月付,并且可以免费更换 IP 地址。本文分享整理一下最新的 Hostwinds 优惠套餐,包括托管型 VPS、无托管型 VPS、Linux VPS、Windows VPS 等多种套餐。目前 Hostwinds...

美国多IP站群VPS商家选择考虑因素和可选商家推荐

如今我们很多朋友做网站都比较多的采用站群模式,但是用站群模式我们很多人都知道要拆分到不同IP段。比如我们会选择不同的服务商,不同的机房,至少和我们每个服务器的IP地址差异化。于是,我们很多朋友会选择美国多IP站群VPS商家的产品。美国站群VPS主机商和我们普通的云服务器、VPS还是有区别的,比如站群服务器的IP分布情况,配置技术难度,以及我们成本是比普通的高,商家选择要靠谱的。我们在选择美国多IP...

afnetworking为你推荐
flash控件一台电脑要装哪几个flash插件gravatar游戏王mycrad怎样换头像?showwindowShowWindow和EnableWindow区别oncontextmenu鼠标右键很好用,但是左键一点反应也没有,请问是什么原因呢?webcrackwebcrack4网页密码tvosTVOS系统是什么?索引超出了数组界限索引超出了数组界限是怎么回事啊?inode智能客户端inode智能客户端无法正常启动,根本开都开不了layoutsubviews如何自定义UISearchBar?丁香园网站丁香园主网站用的是什么程序??谁能看的出来??
如何查询域名备案号 raksmart 加勒比群岛 好看的桌面背景图 新站长网 hnyd 牛人与腾讯客服对话 卡巴斯基永久免费版 刀片式服务器 东莞数据中心 100m独享 服务器合租 重庆双线服务器托管 gtt 电信主机 个人免费主页 双线机房 彩虹云 360云服务 网站加速软件 更多