Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用核心数据,并尝试使用代码一次获取大量数据
NSArray *result = [context executeFetchRequest:request error:&error];
但我的主线是冻结的。如何在后台线程上获取我的数据? [在苹果文档中,它在“在后台获取 UI 响应性”列中的链接上给出][1]
但是没有示例代码来实现它。请帮帮我。
[self performSelectorInBackground:@selector(yourMethodName) withObject:nil];
如果您不需要将任何参数传递给该方法.. 最后留下 nil
在你调用的那个方法中处理你的获取