gpt4 book ai didi

iphone - 在后台运行一个进程,而用户仍然可以使用 UI

转载 作者:可可西里 更新时间:2023-11-01 06:22:14 30 4
gpt4 key购买 nike

我正在尝试在不锁定用户界面的情况下在后台运行数据库获取进程。

目前我有一个按钮可以执行此操作,但我希望它是自动的,以便在用户浏览当前结果时它可以获得更多结果。

这是按钮的代码,我想让它自动执行而不锁定 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

最佳答案

您可以使用的典型模式如下所示:

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
// perform data processing here (done in the background)

dispatch_async(dispatch_get_main_queue(), ^{
// update user interface here (done on the main thread)
});
});

关于iphone - 在后台运行一个进程,而用户仍然可以使用 UI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13465496/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com