Iphone开发中的同步和异步

Iphone用http协议和服务器通信有两种方式,一种是同步一种是异步的,所谓同步是指当客户端调用post/get的方式的函数向服务器发出数据请求后,该函数不会直接返回,只有得到服务器响应或者请求时间timeout之后才会返回继续执行其它任务。异步采用回调的方式,即请求发送后,函数会立即返回,一旦服务器联结成功操作系统会去触发相应的回调进行相应的处理。这和window的消息处理机制一样。

同步一般用于一次性操作,如判断当前网络是否可用等等。多的就不再一一介绍,在实现上面有两点不同:

(1)在用NSURLConnect的时候一个调用同步函数一个调用了异步函数。

(2)异步的需要实现delegate的相关回调函数。

以下是参考代码:

同步方式:

-(void)UpadaPost:(NSString*)strcontextURL:(NSString*)urlstr{
NSLog(urlstr);
NSLog(strcontext);
assert(strcontext!=NULL);
assert(urlstr!=NULL);
NSData*postData=[strcontextdataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];
NSString*postLength=[NSStringstringWithFormat:@"%d",[postDatalength]];
NSMutableURLRequest*request=[[[NSMutableURLRequestalloc]init]autorelease];
[requestsetURL:[NSURLURLWithString:urlstr]];
[requestsetHTTPMethod:@"POST"];[request setTimeoutInterval: 20];//setting timeout
[requestsetValue:postLengthforHTTPHeaderField:@"Content-Length"];
[requestsetValue:@"application/x-www-form-urlencoded"forHTTPHeaderField:@"Content-Type"];
[requestsetHTTPBody:postData];
NSURLResponse*respone;
NSError*error;

NSData*myReturn=[NSURLConnection sendSynchronousRequest:requestreturningResponse:&respone
error:error];

NSLog(@"%@",[[NSStringalloc]initWithData:myReturnencoding:NSUTF8StringEncoding]);
}

异步方式:

-(void)UpadaPost:(NSString*)strcontextURL:(NSString*)urlstr{
NSLog(urlstr);
NSLog(strcontext);
assert(strcontext!=NULL);
assert(urlstr!=NULL);
NSData*postData=[strcontextdataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];
NSString*postLength=[NSStringstringWithFormat:@"%d",[postDatalength]];
NSMutableURLRequest*request=[[[NSMutableURLRequestalloc]init]autorelease];
[requestsetURL:[NSURLURLWithString:urlstr]];
[requestsetHTTPMethod:@"POST"]; [request setTimeoutInterval: 20];//setting timeout
[requestsetValue:postLengthforHTTPHeaderField:@"Content-Length"];
[requestsetValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[requestsetHTTPBody:postData];

NSURLConnection*conn=[[NSURLConnectionalloc]initWithRequest:request delegate:self];
if(conn)
{
NSLog(@"Connectionsuccess");
[UIApplicationsharedApplication].networkActivityIndicatorVisible=YES;
[connretain];
}
else
{
//informtheuserthatthedownloadcouldnotbemade
}
}

#pargmamark------------------以下为相应的回调函数-------------------------------
//收到响应时,会触发
-(void)connection:(NSURLConnection*)connection didReceiveResponse:(NSURLResponse*)response{
//注意这里将NSURLResponse对象转换成NSHTTPURLResponse对象才能去
NSHTTPURLResponse*httpResponse=(NSHTTPURLResponse*)response;
if([responserespondsToSelector:@selector(allHeaderFields)]){
NSDictionary*dictionary=[httpResponseallHeaderFields];
NSLog([dictionarydescription]);
NSLog(@"%d",[responsestatusCode]);
}
}
//链接错误
-(void)connection:(NSURLConnection*)connectiondidFailWithError:(NSError*)error{
//[selfperformSelectorOnMainThread:@selector(httpConnectEnd)withObject:nil waitUntilDone:NO];
NSLog(@"%@",[errorlocalizedDescription]);
}
//Calledwhenachunkofdatahasbeendownloaded.
//接收数据每收到一次数据,会调用一次
-(void)connection:(NSURLConnection*)connectiondidReceiveData:(NSData*)data{
//Processthedownloadedchunkofdata.
NSLog(@"%d",[datalength]);
//NSLog(@"%@",[[NSStringalloc]initWithData:dataencoding:NSUTF8StringEncoding]);
//[selfperformSelectorOnMainThread:@selector(updateProgress)withObject:nil waitUntilDone:NO];
}
//接收结束
-(void)connectionDidFinishLoading:(NSURLConnection*)connection{
NSLog(@"%@",connection);
//NSLog(@"%lld",received_);
//[selfperformSelectorOnMainThread:@selector(httpConnectEnd)withObject:nil waitUntilDone:NO];
//Settheconditionwhichendstherunloop.
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值