gpt4 book ai didi

iphone - 使iOS block 同步执行

转载 作者:IT王子 更新时间:2023-10-29 08:08:53 25 4
gpt4 key购买 nike

如何让 block 同步执行,或者让函数在 return 语句之前等待处理程序,以便数据可以从 block 传回?

-(id)performRequest:(id)args
{
__block NSData *data = nil;

[xyzclass requestAccessToAccountsWithType:accountType withCompletionHandler:^(BOOL granted, NSError *error) {
data = [NSData dataWithData:responseData];
}];

return data;
}

最佳答案

在这种情况下,您可以使用信号量。

-(id)performRequest:(id)args
{
__block NSData *data = nil;
dispatch_semaphore_t sem = dispatch_semaphore_create(0);
[xyzclass requestAccessToAccountsWithType:accountType withCompletionHandler:^(BOOL granted, NSError *error) {
data = [NSData dataWithData:responseData];
dispatch_semaphore_signal(sem);
}];
dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
return data;
}

信号量将阻止进一步语句的执行,直到收到信号,这将确保您的函数不会过早返回。

关于iphone - 使iOS block 同步执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6606780/

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