码迷,mamicode.com
首页 > 移动开发 > 详细

IOS中的多线程实现:NSThread、GCD和NSOperation

时间:2015-09-19 19:39:15      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

1.NSThread

先创建,后启动

NSThread *thread = [NSThread allc] initWithTarget:self selector:@selector(run) object:nil];
[thread start];

直接启动

 

2.GCD

3.NSOperation

IOS中的多线程实现:NSThread、GCD和NSOperation

标签:

原文地址:http://www.cnblogs.com/ddhjy/p/4821933.html

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