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

多线程的实现

时间:2014-06-08 21:54:03      阅读:291      评论:0      收藏:0      [点我收藏+]

标签:c   class   blog   code   a   tar   

NSThread

方法一:

1
2
3
4
5
6
7
8
9
10
11
12
13
- (void)viewDidLoad
{
    [super viewDidLoad];
    NSThread * thread = [[NSThread alloc]initWithTarget:self selector:@selector(test:) object:@"fuck"];
    [thread start];
}
- (void)test:(NSString *)string
{
    for (int i = 0; i < 100; i ++) {
         
        NSLog(@"%@,%d",string,i);
    }
}

 方法二:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
- (void)viewDidLoad
{
    [super viewDidLoad];
    //这种比较快速,不用调用start方法。
    [NSThread detachNewThreadSelector:@selector(test:) toTarget:self withObject:@"you"];
     
}
- (void)test:(NSString *)string
{
    for (int i = 0; i < 100; i ++) {
         
        NSLog(@"%@,%d",string,i);
    }
}

 方法三:使用较多

1
2
3
4
5
6
7
8
9
10
11
12
13
- (void)viewDidLoad
{
    [super viewDidLoad];
    //这个方法是从NSObject继承下来的,所有对象都可以通过这个方法快速创建一个线程去执行test中的方法。
    [self performSelectorInBackground:@selector(test:) withObject:@"哈哈"];
}
- (void)test:(NSString *)string
{
    for (int i = 0; i < 100; i ++) {
         
        NSLog(@"%@,%d",string,i);
    }
}

 

多线程的实现,布布扣,bubuko.com

多线程的实现

标签:c   class   blog   code   a   tar   

原文地址:http://www.cnblogs.com/congliang/p/3775610.html

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