// 새로운 창을 열어 네비네이션과 bottonbar 을 내가 만든것을 적용할수 있다.
// 새로운 부모창이 열리게 된다. 아래에서 위로 넘어는 에니메이션
WebView4 *webView4 = [[WebView4 alloc] initWithNibName:@"WebView4" bundle:nil];
[self.tabBarController presentModalViewController:webView4 animated:YES];
[webView4 release];
//// 새로운 창을 열어 네비네이션과 bottonbar 을 내가 만든것을 적용할수 없다..
옆으로 밀어 넣게 되어 우에서 좌측으로 넘어 오는 에니메이션, 현재 창을 유지한체 ...
WebView4 *webView4 = [[WebView4 alloc] initWithNibName:@"WebView4" bundle:nil]; [self.navigationController pushViewController:webView4 animated:YES];
[WebView4 release];
'개발도구 > iOS - 아이폰 개발' 카테고리의 다른 글
[아이폰]Application Loader, CFBundleIconFile, Error communicating with iTunes Store (0) | 2012.01.24 |
---|---|
[아이폰] Application Loader 사용 과 chitecture(s) must be present: armv6 (0) | 2012.01.20 |
[아이폰] 새창없이 바로 열기 [UIApplication sharedApplication] (0) | 2012.01.18 |
아이패드 만화 pdf 보기 (0) | 2011.12.02 |
[APNS - 아이폰 푸시 설치 정보] (0) | 2011.11.21 |