IOS将异步变成顺序执行的方式
2016-04-23 本文已影响512人
幻想综合症患者
使用这段逮捕进行不断轮询
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;