本文主要是介绍presentViewController显示方式的窗口,没有导航栏的解决方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
ViewController *Controller = [[ViewController alloc] init];
[self presentViewController:Controller animated:YES completion:nil];
怎么看怎么觉得代码没啥问题,搜索了半天发现应该采用如下方式,对Controller进行转换
ViewController *Controller = [[ViewController alloc] init];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:Controller];
[self presentViewController:nav animated:YES completion:nil];
这样就OK啦
这篇关于presentViewController显示方式的窗口,没有导航栏的解决方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!