有用的总结iOS开发IOS

iOS多线程篇-多线程简介

2016-01-22  本文已影响756人  deve_雨轩

一、进程和线程

二、多线程

三、多线程在ios里的应用

四、阻塞线程示例


//
//  ViewController.m
//
//  Created by 雨轩 16/1/22.
//  Copyright © 2016年 apple. All rights reserved.
//

#import "ViewController.h"
#import <pthread.h>

@interface ViewController ()

@end

@implementation ViewController
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{

    //获取当前线程 ,后面我专门会写一篇关于NSThread的文章
    NSThread * thread = [NSThread currentThread];
    for(int i = 0 ; i < 99999; i++){
        NSLog(@"%d======%@",i,thread);
    }

}
@end
Paste_Image.png
上一篇下一篇

猜你喜欢

热点阅读