presentViewController显示方式的窗口,没有导航栏的解决方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了presentViewController显示方式的窗口,没有导航栏的解决方法相关的知识,希望对你有一定的参考价值。

ViewController *Controller = [[ViewController alloc] init];  

UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:Controller];  

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




//未登录,跳转到登录页面    TLDLoginViewController *loginVC = [[TLDLoginViewController alloc]init];    TLDNavigationController *nv = [[TLDNavigationController alloc] initWithRootViewController:loginVC];//将普通视图添加到NavigationController    [self presentViewController:nv animated:YES completion:^{        NSLog(@"模态视图");    }];//退出登录页面    [self dismissViewControllerAnimated:YES completion:nil];

本文出自 “ZhuoKing” 博客,请务必保留此出处http://9951038.blog.51cto.com/9941038/1959027

以上是关于presentViewController显示方式的窗口,没有导航栏的解决方法的主要内容,如果未能解决你的问题,请参考以下文章

iOS:presentViewController 错误 不鼓励在分离的视图控制器上显示视图控制器

iOS - 具有透明度的 presentViewController

PresentViewController:动画不显示在 iPad 上

故事板,self presentViewController,iOS 6,空白屏幕

presentViewController 不隐藏弹出框,弹出框出现在呈现的模态视图上

presentViewController 显示在 UIWindow 后面