gpt4 book ai didi

ios - UITabBarController 顶部、底部、前导、尾随的额外空间

转载 作者:可可西里 更新时间:2023-11-01 01:44:32 24 4
gpt4 key购买 nike

你好我正在以编程方式创建标签栏,在我的功能中需要选择填充自定义颜色的标签,到目前为止我已经使用下面的代码实现了这一点,下面的输出见截图。

tabBarController.tabBar.selectionIndicatorImage = UIImage.imageWithColor(color: colors.AppSkyBlue, size: tabBarItemSize).resizableImage(withCapInsets: UIEdgeInsets(top: 1, left: 1, bottom: 1, right: 1), resizingMode: .stretch)

enter image description here

清楚地看到所选选项卡周围的空白区域,我要从所有方面删除它吗?任何帮助将不胜感激。

最佳答案

您可以简单地在 UITabBar 顶部添加一个 subview ,并为背景色设置与标签栏颜色相同的颜色 - 这样它就可以与之融合

var lineView = UIView(frame: CGRect(x: 0, y: 0, width:tabBarController.tabBar.frame.size.width, height: 1))
lineView.backgroundColor = UIColor.grey
tabBarController.tabBar.addSubview(lineView)

这是选项之一。

关于ios - UITabBarController 顶部、底部、前导、尾随的额外空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57721139/

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