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

使用edgesForExtendedLayout遇到的麻烦

时间:2015-10-02 17:15:17      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

   今天在写一个多界面之间来回返回的工程时,遇到的问题,建了两个类:FirstViewController 和 ButtonViewController。

   由 FirstViewController 进入 ButtonViewController,我在 FirstViewController.m 和 ButtonViewController.m 中分别使用:

self.navigationController.navigationBarHidden = YES;  //  隐藏导航栏     FirstViewController.m 中
self.navigationController.navigationBarHidden = NO; // 恢复该页面导航栏 ButtonViewController.m 中

此时,以为这样可以好了,当打开模拟器,发现 ButtonViewController 界面中的contentView的部分被导航栏遮住了,所以在baidu.com之后参考http://blog.csdn.net/cny901111/article/details/26529949使用了如下代码:

self.edgesForExtendedLayout = UIRectEdgeNone;  

但是问题又来了,在模拟器上运行的时候,发现进入 ButtonViewController 时导航栏位置出现了"卡顿"现象,解决代码如下:

//
 self.edgesForExtendedLayout = UIRectEdgeNone;

// 改为:
self.navigationController.navigationBar.translucent = NO;
 self.tabBarController.tabBar.translucent = NO;

即可。当没有设置 translucent(默认的是YES) 的时候,导航栏默认的是半透明颜色,所以需要如上设置就好。

使用edgesForExtendedLayout遇到的麻烦

标签:

原文地址:http://www.cnblogs.com/cnrong/p/4852346.html

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