线程核心数据和UI导航控制器
我有一个在后台使用核心数据的应用程序。每次当我推送一些视图控制器时,都会启动后台线程,从服务器加载数据并将其填充到核心数据。 每个视图控制器都使用 NSFetchedResultsController 进行实时表更新。
问题是,当我推送一些视图控制器并从中再次推送其他视图控制器(在后台加载数据时)时,当来自先前视图控制器的 nsfetchedresultscontroller 尝试更新表时,我会崩溃。
我该如何解决这个问题?
I have an app that uses Core Data in background. Every time when i push some view controller, starts background thread which loading data from server and fills it to core data.
Every view controller uses NSFetchedResultsController for realtime table update.
The problem is that when i push some view controller and from them i again push other view controller (while data loading in background) i have crash when nsfetchedresultscontroller from previous viewcontroller trying update table.
How can i fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否跨线程使用相同的 ManagedObjectContext ?这是非常不受支持的。
这是一个很好的运行过程关于将 Core Data 与多线程一起使用。基本上,每个线程一个 MOC,使用相同的 StoreCoordinator,通过通知与其他更改保持同步。
Are you using the same ManagedObjectContext across threads? That's very much unsupported.
Here's a good run-through on using Core Data with multiple threads. Basically, one MOC per thread, using the same StoreCoordinator, staying in sync with each others changes via notifications.