您好,感谢您提前提供的帮助,
我看过一些帖子,我对多线程有点困惑。看起来这可能很容易,但是我对编程很陌生,所以我仍在努力掌握这一点。
这是从数据库中提取数据的两个调用,它们需要永远保持原样......所以我正在考虑对这些进行多线程处理,直到我可以学习如何为此构建核心数据。现在我正在使用 sqllite 并且数据库涉及 10,000 多个食谱......所以不像我想要的那样快如闪电......
请让我知道您的想法,以及我如何使这些可能同时发生?(如果可能的话)
先感谢您。
requestCount++;
[[DataPuller sharedDataPuller] getAllDeletedRecipeList];
[DataPuller sharedDataPuller].target = self;
requestCount++;
[[DataPuller sharedDataPuller] getAllRecipesList];
[DataPuller sharedDataPuller].target = self;