gpt4 book ai didi

cocoa-touch - UITableView insertRowsAtIndexPaths 导致应用程序无响应

转载 作者:行者123 更新时间:2023-12-01 17:45:49 27 4
gpt4 key购买 nike

我有一个从获取的结果 Controller 填充的表格 View 。我还使用 NSTimer 每分钟进行一次 API 调用,从而引入要显示的任何新数据。这使用带有新托管对象上下文的 GCD 异步发生,并在完成时使用 mergeChangesFromContextDidSaveNotification 将更改合并到主托管对象上下文中。这会触发获取的结果 Controller 委托(delegate)方法,并使用 insertRowsAtIndexPaths 将任何新行插入到表中。

这一切都按预期工作,但是我看到 UITableView endUpdates 被调用和新单元格出现在表格 View 中之间有 5 秒的暂停。在此暂停期间,应用程序不会响应任何触摸事件(标签栏、滚动表格 View 等)。

我有点困惑从哪里开始调试这个问题 - 单元配置都发生在 endUpdates 调用之前,并且似乎不需要很长时间。

代码相当复杂,但如果需要,我可以发布它。

编辑 :

这是一个日志摘录,显示了从上下文合并到调用 endUpdates 的每个调用的时间:

2011-05-22 15:29:47.119 myapp[4136:7c1b] got background save notification
2011-05-22 15:29:47.124 myapp[4136:7c1b] controllerWillChangeContent
2011-05-22 15:29:47.128 myapp[4136:7c1b] NSFetchedResultsChangeInsert
2011-05-22 15:29:47.132 myapp[4136:7c1b] controllerDidChangeContent
2011-05-22 15:29:47.138 myapp[4136:7c1b] numberOfSectionsInTableView called
2011-05-22 15:29:47.140 myapp[4136:7c1b] numberOfSectionsInTableView called
2011-05-22 15:29:47.144 myapp[4136:7c1b] numberOfRowsInSection called
2011-05-22 15:29:47.157 myapp[4136:7c1b] cellForRowAtIndexPath called
2011-05-22 15:29:47.195 myapp[4136:7c1b] cellForRowAtIndexPath returning configured cell
2011-05-22 15:29:47.212 myapp[4136:7c1b] endUpdates called

最佳答案

您现在可能已经自己解决了这个问题,但是当我真正遇到 时,我遇到了这个问题。准确 今天同样的问题,并认为它需要为后代回答。

最有可能发生的是您设置了 NSManagedObjectContext在主线程上,然后做你的save在不同的线程上,导致 UITableView 上的动画(在主线程上)等待直到该 GCD 线程被处理。

简单修复:在 GCD 线程中执行所有计算密集型工作以及插入 MOC,然后执行 save在主线程上,像这样:

dispatch_async( dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{       
// Do all your processing and inserting here

// ... and then, when you're done:
dispatch_async( dispatch_get_main_queue(), ^{
NSError *anyError = nil;
BOOL success = [self.managedObjectContext save:&anyError];
if(!success) {
// Error handling
}
});
});

关于cocoa-touch - UITableView insertRowsAtIndexPaths 导致应用程序无响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6088445/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com