当前位置: 代码迷 >> Iphone >> 网络开始-多线程-堵塞主线程(演示)(一)
  详细解决方案

网络开始-多线程-堵塞主线程(演示)(一)

热度:316   发布时间:2016-04-25 05:32:13.0
网络开始---多线程---阻塞主线程(演示)(一)
 1 #import "ILViewController.h" 2  3 @interface ILViewController () 4  5 @end 6  7 @implementation ILViewController 8  9 - (void)viewDidLoad10 {11     [super viewDidLoad];12     13     //当前线程 ,判断这个方法在哪个线程中,可以打印这个线程,当num==1时,是在主线程中14     //其他的在子线程中 ,不能把耗时的操作放在主线程中,所以不能把耗时的操作放在viewDidLoad方法里执行 耗时操作要放到非主线程中,后台线       程或者子线程中15     [NSThread currentThread];16     17     // Do any additional setup after loading the view, typically from a nib.18 }19 20 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event21 {22     for (int i = 0; i<10000; i++) {23         NSLog(@"---------%d", i);24     }25 }26 27 @end

 

  相关解决方案