在 UITabBar 之上呈现 UIView
我正在嵌套在 UITabBarController 中的表格视图上绘制自定义视图(UIDatePicker)。当我添加如下所示的自定义视图时,它会被选项卡栏剪切。
[self.view addSubview:customDateView];
有人对如何解决这个问题有建议吗?我可以隐藏标签栏吗?
提前致谢, 瑞奇。
I am drawing a custom view (UIDatePicker) over my table view which is nested within a UITabBarController. When I add my custom view as below, it gets clipped by the tab bar.
[self.view addSubview:customDateView];
Does anyone have a recommendation on how to go around this? Can I hide the tab bar?
Thanks in advance,
Ricky.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于遇到此问题的其他人,只需将视图的 hidesBottomBarWhenPushed 属性设置为 YES 即可。
For anyone else with this problem, just set the view's hidesBottomBarWhenPushed property to YES.