标签:
单线程
//1.获取当前线程
NSThread *current=[NSThread currentThread];
//2.使用for循环执行一些耗时操作
for (int i=0; i<10; i++) {
//3.输出线程
NSLog(@"btnClick---i=%d---%@",i,current);
for (int j=0; j<10; j++) {
NSLog(@"j=%d",j);
}
}
标签:
原文地址:http://www.cnblogs.com/sunjianfei/p/5724948.html