当应用程序从当前返回到父视图时,应用程序底部有空白
我正在开发一个应用程序,其底部有 UITabBar
。其中一个选项卡包含 UITableviewController
,另一个选项卡包含 UIViewController
。 UITableViewController
被定制为保存图像网格。当我点击这些图像时,我的应用程序会在 navigationcontroller
中推送另一个视图,但此时我删除了选项卡栏并放置了工具栏。到目前为止一切正常。但是当我返回父视图时,我看到底部有空白。我将工具栏隐藏在 viewWilldisapper
中,以便我无法在父视图上看到。 谁能告诉我哪里出错了? 问候, 苏米特。
I am working on an app which has UITabBar
at the bottom of app. One of the tab holds UITableviewController
and another holds UIViewController
. UITableViewController
is customized to hold grid of images. When I tap on these images, my App pushes another view in navigationcontroller
but at this time I remove tabbar and put toolbar. So far everything works fine. But when I go back to parent view I see white space at the bottom of it. I am hiding toolbar in viewWilldisapper
so that I can not see on parent view.
Can anyone tell me where I am going wrong?
Regards,
Sumit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要在 viewWillDisappear 中隐藏 toolBar。当您使用 hidesBottomBarWhenPushed 方法隐藏选项卡时,当您按下和弹出时,它会自动隐藏和显示。尝试删除在 viewWillDisappear 中隐藏工具栏的代码段。
You don't need to hide toolBar in viewWillDisappear. When you use the method hidesBottomBarWhenPushed to hide tabbar it will automatically hides and display when you push and pop. Try removing the piece of code where you are hiding toolBar in viewWillDisappear.