2013年9月7日
摘要: 使用runloop阻塞线程的正确写法runloop可以阻塞线程,等待其他线程执行后再执行。比如:@implementation ViewController{ BOOL end;}…– (void)viewDidLoad{ [super viewDidLoad]; NSLog(@”start new thread …”); [NSThread detachNewThreadSelector:@selector(runOnNewThread) toTarget:self withObject:nil]; while (!end) { NSLog(@”runloop…”); ... 阅读全文
posted @ 2013-09-07 12:53 smartch 阅读(348) 评论(0) 推荐(0) 编辑