반응형
*Thread 생성법::
NSThread *myThread;
myThread = [[NSThread alloc] initWithTarget:self
selector:@selector(/*함수명*/)
object:nil];
[myThread start]; [self -(void)writeLabel:(NSString *)msg {
*UI 변수와 주고 받는 법
performSelectorOnMainThread:@selector(writeLabel:)//여기는 함수 명
withObject:@"START" //여기는 파라미터
waitUntilDone:YES];
label.text = msg; //label은 IBOutlet UILabel*label;
textView.text = msg; //textView 는 IBOutlet UITextView *textView; }
'ios aos 개발 > iPhone' 카테고리의 다른 글
[iPhone] UITableVIew 꼭 써야하는 함수 (0) | 2011.07.02 |
---|---|
[iPhone] UIAlertView 창 띄우기, 사라지게 하기 (0) | 2011.06.18 |
[iPhone] Uitableview 선택 해제 (0) | 2011.06.01 |
[Iphone] 홈버튼 눌렀을시 종료 시키기 (0) | 2011.05.13 |
[iPhone] webview 에 화면 출력 (0) | 2011.05.13 |