码迷,mamicode.com
首页 > 编程语言 > 详细

将一个行数在主线程执行的4中方法

时间:2016-11-17 01:51:16      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:main   loop   pat   isp   select   queue   eth   主线程   selector   

 1-GCDblockblock

dispatch_async(dispatch_get_main_queue(), ^{

});

2-NSOperation

NSOperationQueue *mainQueue = [NSOperationQueue

mainQueue];

NSBlockOperation *operation = [NSBlockOperation

blockOperationWithBlock:^{

}];

[mainQueue addOperation:operation];

3-NSThread

[selfperformSelector:@selector(method)

onThread:[NSThread mainThread] withObject:nilwaitUntilDone:YESmodes:nil];

[selfperformSelectorOnMainThread:@selector(method)

withObject:nilwaitUntilDone:YES];

[[NSThread mainThread] performSelector:

@selector(method) withObject:nil];

4-RunLoop

[selfperformSelectorOnMainThread:@selector(method)

withObject:nilwaitUntilDone:YES];

[[NSThread mainThread] performSelector:

@selector(method) withObject:nil];

? RunLoop

[[NSRunLoop mainRunLoop] performSelector:@selector(method) withObject:nil];

将一个行数在主线程执行的4中方法

标签:main   loop   pat   isp   select   queue   eth   主线程   selector   

原文地址:http://www.cnblogs.com/CJH5209/p/6072149.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!