我试图用来CFRunLoopRunInMode()
避免在[AFHTTPClient getPath:...]
完成块中返回。
我的代码如下所示:
NSLog(@"start");
__block BOOL someCondition = NO;
AFHTTPClient *client = [[AFHTTPClient alloc] initWithBaseURL:[NSURL URLWithString:@"http://domain.com"]];
[client getPath:@"my/path" parameters:nil success:^(AFHTTPRequestOperation *operation, id responseObject) {
NSLog(@"success");
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
dispatch_async(dispatch_get_main_queue(), ^{
NSLog(@"async log");
someCondition = YES;
});
while (!someCondition) {
CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0.5, YES);
}
NSLog(@"failure");
}];
我预计输出是:
start
async log
failure
但相反,我只得到:
start
CFRunLoopRunInMode()
返回kCFRunLoopRunHandledSource
,但调度队列从不执行提交的块。如果我在完成块之外运行相同的代码,则输出符合预期。
我无法弄清楚为什么从完成块运行时调度队列没有被处理。
有人可以解释一下为什么会这样吗?