ios aos 개발/iPhone 썸네일형 리스트형 [iPhone] Uitableview 선택 해제 //셀 선택시 이벤트를 처리하는 함수 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { [tableView deselectRowAtIndexPath:indexPath animated:YES];//선택해제 } 더보기 [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.. 더보기 [Iphone] 홈버튼 눌렀을시 종료 시키기 ...AppDelegate.m 파일 내에서 - (void)applicationDidEnterBackground:(UIApplication *)application { exit(0);//백그라운드로 갈때 프로그램 종료 시킴 작성 } 더보기 [iPhone] webview 에 화면 출력 IBOutlet UIWebView* _web; IBOutlet UIViewController * _ViewWeb; NSString *strurl = @"http://....... 링크 주소 "; NSURL *url = [NSURL URLWithString: strurl]; NSURLRequest *request = [NSURLRequest requestWithURL: url]; [_web loadRequest:request]; self.view = _ViewWeb.view; 더보기 이전 1 2 다음