gpt4 book ai didi

ios - 执行选择器 :withObject:afterDelay: -- can I be certain that this is run on the main thread?

转载 作者:行者123 更新时间:2023-11-28 21:56:03 24 4
gpt4 key购买 nike

我正在使用 iOS,我想在显示进度 HUD 的同时在主线程上运行导入过程。我想我应该使用 performSelectorOnMainThread,但它不提供“withDelay”参数。我可以确定,如果我当前在主线程上,下面的代码将在主线程上执行吗?

- (void)tkContactsMultiPickerController:(TKContactsMultiPickerController *)picker didFinishPickingDataWithInfo:(NSArray *)contacts
{
[UIApplication sharedApplication].idleTimerDisabled = NO;
[UIApplication sharedApplication].idleTimerDisabled = YES;

[SVProgressHUD showWithStatus:[self importingString] maskType:SVProgressHUDMaskTypeBlack];

[self performSelector:@selector(importContacts:) withObject:contacts afterDelay:.1];
}

最佳答案

是的。 The documentation明确地说:

Invokes a method of the receiver on the current thread using the default mode after a delay.

如果您需要从另一个返回主线程 -- 主队列上的任务 are guaranteed,您也可以使用 dispatch_after()在主线程上运行。

关于ios - 执行选择器 :withObject:afterDelay: -- can I be certain that this is run on the main thread?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26518665/

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