我正在通过同步方法从Web服务中获取数据。我向Web服务发出请求,然后查看冻结。我尝试在从Web服务加载数据之前添加UIActivityIndicatorView,并在获取数据后停止它,但未显示活动指示器。
我试图将Web服务数据获取操作放在其他线程上
[NSThread detachNewThreadSelector:@selector(fetchRequest) toTarget:self withObject:nil];
但是此时TableView崩溃,因为它没有获取绘制单元格的数据。
在fetchRequest函数中,我正在做
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL
URLWithString:URLString]];
NSData *response = [NSURLConnection sendSynchronousRequest:request
returningResponse:nil error:nil];
NSError *jsonParsingError = nil;
NSDictionary *tableData = [NSJSONSerialization JSONObjectWithData:response
options:0
error:&jsonParsingError];
responseArray = [[NSMutableArray alloc]initWithArray:[tableData objectForKey:@"data"]];
for(int i = 0; i < responseArray.count; i++)
{
NSArray * tempArray = responseArray[i];
responseArray[i] = [tempArray mutableCopy];
}
此
responseArray
用于在单元格中填充信息请告诉我该怎么做。任何帮助将不胜感激 ...
最佳答案
问题出在你的方法上。 Synchronous
方法在主线程上运行。并且由于UI在主线程上更新,因此您的应用程序挂起。
因此,解决方案将使用asynchronous
方法在单独的线程上下载数据,以使UI不会挂起。
因此,请使用NSURLConnection
的sendAsynchronousRequest
。这是一些示例代码:
NSURL *url = [NSURL URLWithString:@"YOUR_URL_HERE"];
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];
NSOperationQueue *queue = [[NSOperationQueue alloc] init];
[NSURLConnection sendAsynchronousRequest:urlRequest queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error)
{
//this is called once the download or whatever completes. So you can choose to populate the TableView or stopping the IndicatorView from a method call to an asynchronous method to do so.
}];