线程的使用
//线程的创建方式
[NSThread detachNewThreadSelector:@selector(getUserInfo:) toTarget:self withObject:xxx];
- (void)getUserInfo:(NSString *)uid {
NSAutoreleasepool *pool = [[NSAutoreleasepool alloc] init];
//要在线程中做的事
[pool release];
}
作者“linwwwei”
补充:移动开发 , IOS ,