关于presentViewController 后调用pushViewController

Posted striveld

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于presentViewController 后调用pushViewController相关的知识,希望对你有一定的参考价值。

错误代码:

LoginViewController *loginVc = [[LoginViewController alloc] int];

[self presentViewController :loginVc animated:YES completion:nil];

以上代码运行结果,返回到loginVc后再次登录调用 pushViewController 无效没有任何反应。

解决方案:

UINavigationController *uiNavC = [[UINavigationController alloc] initWithRowViewController:[[LoginViewController alloc] int]];

[self presentViewController :uiNavC animated:YES completion:nil];

以上是关于关于presentViewController 后调用pushViewController的主要内容,如果未能解决你的问题,请参考以下文章

堆叠 presentViewController 后 statusBarFrame = 0

PresentViewController切换界面

presentViewController 和 UIViewController 布局

self.presentingViewController presentViewController 不工作

presentViewController 显示在 UIWindow 后面

通知在 Presentviewcontroller 目标-c 中不起作用