说起线程,不会陌生了,操作系统课程里已经详细介绍了这个东东,这里就不解释了,想要了解的问问百度或者翻翻书. 线程的创建 总结了昨天的学习,有下面几种创建的方式. //第一种 NSThread *t = [[NSThread alloc] initWithTarget:self selector: @selector(mutitly) object:nil]; [t start]; //第二种 [NSThread detachNewThreadSelector:@selector(mutitly)…