当我单击TabBar项时,整个TabBar都消失了....,Swift,Xcode

问题描述

我不知道为什么会这样,但是如果您这样做,请告诉我。 当我单击TabBar_ProfileButton时,转到Profilepage,然后再次在TabBarButton_ChatButton中单击,然后转到ConversationView,TabBar消失。我不知道为什么。 我试图调用tabBat isHidden = false不会消失,并且因为第一个导航控制器TabBar被隐藏,因为它不必出现在welcomeView,loginView或registerView中。

StoryboardStoryboard - WelcomeVC - DescriptionsStoryboard - ConversationVC - DescriptionConversationVC Swiftfile - CodeFirst time ConversationVC LoadsFirst time ProfileVC LoadsSecond time ConversationVC Loads - TabBar Disappears

解决方法

您必须为tableView设置约束或更改它的contentInset。否则,tableView会出现在TabBar的顶部,这就是它消失的原因

尝试使用以下代码:
tableView.contentInset.bottom = self.tabBarController?.tabBar.frame.height ?? 0

请确保下次输入您的代码,而不仅仅是制作screenShots,因为这会使其他人不舒服!