抱歉,我是Cocoa的新手,因为我是iOS移动开发的新手......直截了当,我在Cocoa上使用GCD方法将数据分配给tableview但是当我解雇[tableview reloadData]
时不工作这是我的示例代码:
-(void)updateCell{
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_async(queue, ^{
NSIndexPath* indexPath;
// Insert code to be executed on another thread here
if(clean_data){
for (int i=0; i<clean_data.count; i++) {
indexPath= [NSIndexPath indexPathForRow:i inSection:0];
sqCell *cell = (sqCell *)[stockQ cellForRowAtIndexPath:indexPath];
for (int j=0; j<plist.count; j++) {
NSString *a =[[clean_data objectAtIndex:i]objectAtIndex:1];
NSString *b =[[[plist objectAtIndex:j]objectForKey:@"data"]objectAtIndex:0];
if([a isEqualToString:b]){
cell.last.text =[[clean_data objectAtIndex:i]objectAtIndex:1];
cell.change.text = @"1231231312312";
}
}
}
}
dispatch_async(dispatch_get_main_queue(), ^{
// Insert code to be executed on the main thread here
///reload table here
[self reload];
});
});
}
这里重装数据的方法
-(void)reload{
NSLog(@"reload");
[stockQ setNeedsLayout];
[stockQ setNeedsDisplay];
[stockQ reloadData];
}
控制台显示“重新加载”文本,但没有触发stockQ UITableCiew ..我的代码中发生了什么?
答案 0 :(得分:0)
您不在异步线程中执行UI处理代码。修改UI(如更新tableView) - 总是在主线程中完成。尝试从异步任务中提取该代码,看看它是否有效。 另一个评论 - 为什么你需要在异步任务中重新加载数据?表视图非常轻巧&amp;快速。帖子中的所有代码都应该在几毫秒内运行。仅对长时间运行且耗时的任务使用dispatch_async!