[[NSThreaed alloc] initWithTarget:self selector:@selector(method) object:obj];

- (void)method:(NSData *)data
{
}


실행시 method 가 없다고 에러난다. 
method 에는 인자값이 하나가 있으므로 @selector(method:) 로 명시해줘야한다.
 

+ Recent posts