我正在加载一个 tableView,它从另一个位置填充它的一些元素......我正在使用 NSNotificationCenter 向视图控制器发送一条消息,以便在数据加载到数据源(NSMutableArray)后重新加载数据......我有一些NSLogs 以帮助调试,并且在触发通知和 tableView 实际重新加载数据之间存在巨大延迟......我想我已经追踪到 cellForRowAtIndexPath 中的延迟,它根本没有任何花哨的东西:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
// Configure the cell...
Line *theLine = [theInvoice.lines objectAtIndex: indexPath.row];
cell.textLabel.text = theLine.name;
cell.detailTextLabel.text = [NSString stringWithFormat: @"qty: %@; unit-price: $%@", theLine.quantity, theLine.unit_price];
cell.textLabel.font = [UIFont fontWithName:@"Helvetica" size:16];
return cell;
}
当收到通知时,我还有一个 NSLog 计数 NSMutableArray 数据源,它记录了正确数量的元素......然后在 tableView 重新加载之前有大约 2 秒的延迟。关于造成这种延迟的原因有什么想法吗?
编辑:这是接收通知的代码:
- (void)updateView:(NSNotification *)notification {
NSLog(@"Notification Received, new count: %d", [theInvoice.lines count]);
[self.tableView reloadData];
}
在 viewDidLoad 方法中,我订阅了通知:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(updateView:) name:@"updateRoot" object:nil];
更新:我将我的 updateView 更改为此,延迟显着减少:
- (void)updateView:(NSNotification *)notification {
NSLog(@"Notification Received, new count: %d", [theInvoice.lines count]);
//[self.tableView reloadData];
dispatch_async(dispatch_get_main_queue(), ^(void) {
[self.tableView reloadData];
});
}
这是因为 UI 线程被赶上做某事并切换到主线程提高了速度吗?