cocoa异步请求 and libxml2.dylib(7)
发布时间:2021-06-07
发布时间:2021-06-07
/archive/cocoa/279826-nsurlrequest-and-nsoperationqueue.html
while(_connection != nil) {
[[NSRunLoop currentRunLoop]
runMode:NSDefaultRunLoopMode beforeDate:[NSDate
distantFuture]];
}
}
}
接下来,是NSURLConnection的delegate方法,这部分的代码和大部分资料的介绍是一样的,你可以实现全部的delegate方法,但这里我们只实现其中3个就足够了,其余的方法不用理会。如你所见,你可以在其中添加自己想到的任何代码,包括接收数据,进行字符编码或者做xml解析。
#pragma mark NSURLConnection delegate Method
// 接收到数据(增量)时
- (void)connection:(NSURLConnection*)connection
didReceiveData:(NSData*)data {
NSLog(@"connection:");
上一篇:春颂阅读及答案