gpt4 book ai didi

ios - 如何隐藏添加到 UITabBar 的自定义按钮?

转载 作者:行者123 更新时间:2023-11-28 10:22:49 26 4
gpt4 key购买 nike

    availableButton.frame = CGRectMake(0, screenHeight - tabBarHeight!, CGFloat(screenWidth/5.0) * 2.0, tabBarHeight!)
availableButton.backgroundColor = FlatGreen()
availableButton.setTitle("Turn On", forState: UIControlState.Normal)
availableButton.setTitleColor(UIColor.whiteColor(), forState: UIControlState.Normal)
availableButton.titleLabel?.font = UIFont(name: "Roboto-Bold", size: 20.0)
self.view.addSubview(availableButton)

这是我添加到我的 TabBarViewController 的按钮。

当我隐藏我的标签栏时:

tabBarController?.tabBar.hidden = true

我也想隐藏这个按钮。

我的按钮是 2 个标签栏项目的宽度。

enter image description here

最佳答案

您已将此按钮添加到您的 View 中,这可能是一种非常糟糕的工作方法。

self.view.addSubview(availableButton)

因为标签栏在它后面,所以它显示了。使用 tabBarItem 将此广告添加到标签栏或手动隐藏此按钮

availableButton.hidden = YES;

你的问题就解决了,谢谢

关于ios - 如何隐藏添加到 UITabBar 的自定义按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32326358/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com