performSelectorOnMainThread 썸네일형 리스트형 [iPhone] Thread 작성법 및 UI 변수와 데이터 주고 받기 *Thread 생성법:: NSThread *myThread; myThread = [[NSThread alloc] initWithTarget:self selector:@selector(/*함수명*/) object:nil]; [myThread start]; *UI 변수와 주고 받는 법 [self performSelectorOnMainThread:@selector(writeLabel:)//여기는 함수 명 withObject:@"START" //여기는 파라미터 waitUntilDone:YES]; -(void)writeLabel:(NSString *)msg { label.text = msg; //label은 IBOutlet UILabel*label; textView.text = msg; //textView 는 I.. 더보기 이전 1 다음