gpt4 book ai didi

ios - 等待直到收到 NSNotification

转载 作者:行者123 更新时间:2023-12-01 15:56:02 27 4
gpt4 key购买 nike

我想要一种方法,可以暂停执行,直到收到通知后再继续。收到通知后它将继续执行。执行此操作的最佳方法是什么?

最佳答案

你可以使用 NSRunLoop

- (BOOL)method {
__block BOOL finish = NO;
[[NSNotificationCenter defaultCenter] addObserverForName:@"myNotification" object:nil queue:nil usingBlock:^(NSNotification *note) {
finish = YES;
}];

while(!finish) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
}

return YES;
}

关于ios - 等待直到收到 NSNotification,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36729939/

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