OC中多线程的建立方法

方法一: NSThread *t = [[NSThread alloc] initWithTarget:self selector:@selector(mutableThread) object:nil]; 方法二: [NSThread detachNewThreadSelector:@selector(mutableThread) toTarget:self withObject:nil]; 方
相关文章
相关标签/搜索