我在我的应用中使用Core Date和iCloud,但检索数据的速度太低。为了创建核心数据堆栈,我使用了MagicalRecords方法
[MagicalRecord setupCoreDataStackWithiCloudContainer:nil localStoreNamed:@"base"];
我可以检索不在主线程中的数据吗?装载需要很长时间。
答案 0 :(得分:2)
只需使用GCD。
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
[MagicalRecord setupCoreDataStackWithiCloudContainer:nil
localStoreNamed:@"base"];
dispatch_async(dispatch_get_main_queue(), ^{
// update your UI if necessary
});
});