我的應用程序中有一個替代流程。該流程開始於我的firstViewController,然後在此查看呼叫我secondViewController這樣的:如何將UINavigationController添加到呈現爲Modal的UIViewController中
- (IBAction)PressButton:(id)sender {
SecondViewController *second = [[SecondViewController alloc] init];
second.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
UINavigationController *nav = self.navigationController;
[nav presentViewController:second animated:YES completion:nil];
}
在我secondViewController我希望把我的thirdViewController。但它不工作我嘗試這樣的方式:
- (IBAction)pressButton:(id)sender {
ThirdViewController *tvc = [[ThirdViewController alloc] init];
UINavigationController *nav = self.navigationController;
[nav pushViewController:tvc animated:YES];
}
當我按下的secondViewController沒有任何按鈕發生。
我在做什麼錯了?
我使用:
- OSX 10.8.2
- 的Xcode 4.6
- 的iOS 6.1
工程就像一個魅力!謝謝 ! – Sebastian 2013-02-25 04:42:19