ASIHTTPResquest 框架功能强大,应用很多;
以前写过ASIHTTPResquest的导入,现在就看一下基本使用
记一下其中基础的操作;
1、发送同步请求;
NSURL * url = [NSURL URLWithString:@"http://www.baidu.com"];//构造url字符串 ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];//构造请求对象 [request startSynchronous];//开始同步请求 <span style="font-family: Arial, Helvetica, sans-serif;">startSynchronous 指的是同步</span> NSString *response = [request responseString];//获取请求字符串 NSLog(@"%@",response);
2、发送异步请求
NSURL * url = [NSURL URLWithString:@"http://www.baidu.com"]; ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url]; [request startAsynchronous]; [request setDelegate:self];//设置委托 NSString *response = [request responseString]; NSLog(@"%@",response);
与同步请求不同异步请求需要拦截HTTP会话事件,并将事件委托给代理来处理;
委托:ASIHTTPRequestDelegate
-(void)requestStarted:(ASIHTTPRequest *)request { //请求开始的时候调用 } -(void)requestFinished:(ASIHTTPRequest *)request { //请求完成的时候调用 } -(void) requestFailed:(ASIHTTPRequest *)request { //请求失败的时候调用 } -(void)request:(ASIHTTPRequest *)request didReceiveResponseHeaders:(NSDictionary *)responseHeaders { //收到HTTP头的时候调用 }
ASIHTTPResquest还支持 块
用块就不需要实现委托了;
ASIHTTPRequest 简单使用,布布扣,bubuko.com
原文地址:http://blog.csdn.net/u010123208/article/details/38442433