개발도구/iOS - 아이폰 개발
[iphone] 클릭후 다음 화면 넘기기 안드로이드 intent같은것
Hay's App
2012. 1. 20. 12:08
// 새로운 창을 열어 네비네이션과 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];