2010-01-13 110 views
1

嘿傢伙我有一個RootViewController,有他的筆尖文件RootView.nib。無論如何,有一個按鈕,當你按下它會將你發送到我的SecondViewController(SecondViewController也有他的SecondViewController.nib文件)。iPhone:從按鈕導航

現在SecondViewController有一個IBOutlet UINavigationController並且還有NavigationController的委託。

但我可以讓應用程序從第二個視圖開始導航,我嘗試連接IB中的所有東西,但沒有任何工作。

我需要幫助,應用程序需要從第二個視圖導航。 最好的問候 卡洛斯巴爾加斯

回答

1

nvm我已經解決了這個問題,我與IB沒有任何關係。

只是加入的UINavigationController * NAV到的RootViewController的,然後這樣做:

SecondViewController *秒= [[SecondViewController的alloc] initWithNibName:...];

nav = [[UINavigationController alloc] initWithRootViewController:second];

[self presentModalViewController:nav animated:NO];

[nav release]; [second release];