2016-05-06 165 views
0

我嘗試使用導航顯示導航,但過渡動畫是從下往上。在iOS中,導航顯示導航

UIViewController2 * vc2 = [[UIViewController2 alloc] init]; 
UINavigationController * nav = [[UINavigationController alloc] initWithRootViewController:vc2]; 
[self.navigationController showViewController:nav sender:nil]; 
+0

爲什麼你需要做的是什麼?這很奇怪。 –

+0

@JLT因爲在scrolla顯示導航欄時,vc2中沒有導航欄。 – AhnQiraj

+0

嗯,也許我只是不明白我猜的流量。 –

回答

0

試試。

UIStoryboard *storyboard = [UIStoryboard storyboardWithName:storyboardName bundle: nil]; 
SecondViewController * vc = [storyboard instantiateViewControllerWithIdentifier:@"ViewControllerB"]; 
[[self navigationController] pushViewController:vc animated:YES];