gpt4 book ai didi

ios - presentViewController 后导航栏不显示

转载 作者:行者123 更新时间:2023-12-01 17:24:35 33 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





presentViewController and displaying navigation bar

(12 个回答)


5年前关闭。




您好,我使用此代码仅使用代码而无需 segue 即可进入新的 Controller 。

    UIStoryboard * mainstoryb = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
UIViewController * vc = [mainstoryb instantiateViewControllerWithIdentifier:@"online_shop"];
[self presentViewController:vc animated:YES completion:nil];

如何在下一个 View 中显示导航栏或标题栏?

最佳答案

您需要如下呈现 NavigationController:

 UIViewController *vc = [self.storyboard instantiateViewControllerWithIdentifier:ContactUSVCID];
UINavigationController *objNav = [[UINavigationController alloc] initWithRootViewController:vc];
[self presentViewController:objNav animated:YES completion:nil];

关于ios - presentViewController 后导航栏不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43518954/

33 4 0