异步请求与异步刷新
异步请求
[NSURLConnection sendAsynchronousRequest:request queue:[[NSOperationQueue alloc]init] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
//可以看data里的值
NSLog(@"data = %@",[[NSString alloc] initWithData:data encoding:4]);
}];
异步刷新
[self.tableView performSelectorOnMainThread:@selector(reloadData) withObject:self waitUntilDone:YES];
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。