gpt4 book ai didi

ios - 回收标签栏空间

转载 作者:行者123 更新时间:2023-11-29 12:09:52 25 4
gpt4 key购买 nike

我通过在 viewWillAppear 中使用 self.tabBarController?.tabBar.hidden = true 隐藏了我的应用程序的标签栏。这成功地隐藏了标签栏,但我屏幕上的 WebView 不占用该空间(见屏幕截图)。我相信我已经成功设置了 AutoLayout。如何让 webview 占用标签栏所在的空间?下面是我的代码示例。

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject!) {

if (segue.identifier == "segToTermsOfService") {
let seg = segue.destinationViewController as! WebViewVC

seg.hidesBottomBarWhenPushed = true

seg.pageType = "Terms"
}

if (segue.identifier == "segToPrivacyPolicy") {
let seg = segue.destinationViewController as! WebViewVC

seg.hidesBottomBarWhenPushed = true

seg.pageType = "Privacy"
}

}

enter image description here

最佳答案

在推送Privacy Policy view controller之前,在Setting view controller中,添加以下行

privacyPolicyVCInstance.hidesBottomBarWhenPushed = YES 

它将隐藏标签栏并使隐私政策 View Controller 填满整个屏幕

关于ios - 回收标签栏空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33788836/

25 4 0