我试图在不锁定用户界面的情况下在后台运行数据库获取过程。
目前我有一个按钮可以执行此操作,但我希望它是自动的,以便在用户浏览当前结果时可以获得更多结果。
这是按钮执行的代码,我想让它自动执行,而不是锁定 UI。此外,如果有一种方法可以暂停该过程,但如果用户转到另一个也非常有用的屏幕,则继续它停止的地方。
提前致谢!
-(IBAction)continueUpdatingResultsButtonPressed:(UIButton*)sender{
[findMoreButton removeFromSuperview];
[self continueFindingMoreRecipes]; //(do this in background without locking screen)
[self loadRefreshButton];//At completion load this button (a blinking button) to refresh the cells with new results
}