我编写了一个将网站数据解析为表格视图的应用程序。
我希望应用程序在完成数据下载并将其显示到表格视图之前阻止 UI,因此我使用 MBProgressHUD 在解析发生时向用户显示反馈。
我编写了以下方法来异步下载数据:
- (void)getDataFromUrlString:(NSString *)string
{
NSDate *dateAtStartOfGetDataFromString = [[NSDate alloc] initWithTimeIntervalSinceNow:0];
NSLog(@"dateAtStartOfGetDataFromString = %@", dateAtStartOfGetDataFromString);
NSMutableString *databaseURL = [[NSMutableString alloc] initWithString:string];
NSURL *url = [NSURL URLWithString:databaseURL];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
NSOperationQueue *queue = [[NSOperationQueue alloc] init];
[NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error)
{
if ([data length] > 0 && error == nil){
[self loadReports:data];
}else if ([data length] == 0 && error == nil){
}else if (error != nil && error.code == NSURLErrorTimedOut){ //used this NSURLErrorTimedOut from foundation error responses
}else if (error != nil){
}
}];
NSDate *dateAtEndOfGetDataFromString = [[NSDate alloc] initWithTimeIntervalSinceNow:0];
NSLog(@"dateAtEndOfGetDataFromString = %@", dateAtEndOfGetDataFromString);
}
这是 loadReports: 方法:
- (void)loadReports:(NSData *)data {
//...Get the data into the table view data array
[HUD hide:YES];
_reports = newReports;
[self.tableView reloadData];
NSDate *dateAfterLoadReports = [[NSDate alloc] initWithTimeIntervalSinceNow:0];
NSLog(@"dateAfterLoadReports = %@", dateAfterLoadReports);
}
该应用程序加载速度非常快并显示 HUD,直到成功完成将数据加载到表视图。
问题是数据显示需要一点时间(5 秒)。
我检查了应用程序使用 NSDate 加载和解析数据的时间:
2013-01-31 18:06:52.508 TrafficReport[4472:c07] dateAtStartViewDidLoad = 2013-01-31 16:06:52 +0000
2013-01-31 18:06:52.513 TrafficReport[4472:c07] dateAtStartOfGetDataFromString = 2013-01-31 16:06:52 +0000
2013-01-31 18:06:52.513 TrafficReport[4472:c07] dateAtEndOfGetDataFromString = 2013-01-31 16:06:52 +0000
2013-01-31 18:06:52.516 TrafficReport[4472:c07] dateAtEndViewDidLoad = 2013-01-31 16:06:52 +0000
2013-01-31 18:06:52.664 TrafficReport[4472:4a03] dateAfterLoadReports = 2013-01-31 **16:06:52** +0000
2013-01-31 18:06:57.569 TrafficReport[4472:4a03] dateAtStartCellForRow = 2013-01-31 **16:06:57** +0000
正如您在 loadReports 之后看到的那样,在执行 cellForRow 方法之前有 5 秒的延迟,我不知道它是什么以及如何修复它。
有任何想法吗?