使用这段逮捕进行不断轮询
flag = YES;
while(flag){
[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
}
在异步完成后将flag设为NO;
使用这段逮捕进行不断轮询
flag = YES;
while(flag){
[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
}
在异步完成后将flag设为NO;