UITableView 中的最后一行被 UITabBar 遮挡
我有一个 UITabBarController,它有一个分配给“viewControllers”属性的 UINavigationController 列表。
每个 UINavigationController 都有一个自定义 UIViewController 作为其“rootController”,并且此自定义 UIViewController 从 .xib 文件加载其“视图”。 该“视图”包含一个 UITableView(以及首次下载 UITableView 的数据时显示的一些其他控件)。
一开始它工作得很好 - 当选择第一个选项卡时,我可以看到第一个视图控制器的表格视图,更改选项卡会显示其他表格视图 - 一切都很好。
我的问题是,当我在这些表视图之一上选择一行时,会实例化一个新的自定义视图控制器,并告知在按下时隐藏底部栏,然后将其推送到导航控制器。 再次 - 这按预期工作。 我看到新的子视图,并且选项卡栏被隐藏。
问题是,当我返回到上一个视图时,UITableView 中的最后一行现在被选项卡栏遮挡(已正确重新出现)。 似乎隐藏底部栏然后在返回到之前的视图时再次显示它的过程使事情变得混乱。
有人遇到过这种情况吗? 知道我可能做错了什么吗?
I have a UITabBarController that has a list of UINavigationControllers assigned to the 'viewControllers' property.
Each UINavigationController has a custom UIViewController as its 'rootController' and this custom UIViewController loads its 'view' from a .xib file. This 'view' contains a UITableView (and some other controls that are displayed when the data for the UITableView is first downloaded).
It works fine to begin with - I can see the table view for the first view controller when the first tab is selected, changing tabs displays the other table views - all is good.
My problem is, when I select a row on one of these table views a new custom view controller is instantiated, told to hide the bottom bar when pushed and then is pushed on to the navigation controller. Again - this works as expected. I see the new sub-view and the tab bar is hidden.
The problem is when I return to the previous view, the final row in my UITableView is now obscured by the tab bar (which has correctly reappeared). It seems the process of hiding the bottom bar and then showing it again when returning to the previous view has confused things.
Has anyone encountered this? Any idea what I might be doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查你的UITableView是否没有UIViewAutoresizingFlexibleHeight(在IB中,见下图)。
替代文本 http://www.quicksnapper.com/files/5161/20375276064A0C11D2C33A4_m.png< /a>
Check that your UITableView has not the UIViewAutoresizingFlexibleHeight (in IB, see the picture below).
alt text http://www.quicksnapper.com/files/5161/20375276064A0C11D2C33A4_m.png