码迷,mamicode.com
首页 > 其他好文 > 详细

UINavigation push 于 present到另一个页面详解

时间:2016-04-14 11:56:35      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:

如果页面中没有导航栏,可以present到这个A页面,在A页面想要跳转到有个有导航栏的页面就需要添加给B页面添加一个UINavigationController 然后present到B页面,代码如下 

 ChatViewController *cvc = [[ChatViewController alloc]init];

  UINavigationController *navi=[[UINavigationController alloc] initWithRootViewController:cvc];

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

 

还有一种方法是push到该页面把导航栏给隐藏 在A页面将要出来的时候,self.navigationgBar.hidden = YES;

页面跳转之前self.navigationgBar.hidden = NO;push跳转

UINavigation push 于 present到另一个页面详解

标签:

原文地址:http://www.cnblogs.com/qiutangfengmian/p/5390211.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!