答案 0 :(得分:3)
您可以尝试移动UITabBarItem
的标题和图像
首先将整个 Title 左右移动
然后将图片左右移动
...请注意,这适用于自定义图像,不适用于系统项目
现在,您可以更加懒惰并创建UITabBar
的自定义子类
class CustomTabBar: UITabBar {
override func awakeFromNib() {
items?.forEach {
$0.titlePositionAdjustment = UIOffset(horizontal: -20, vertical: -20)
$0.imageInsets = UIEdgeInsets(top: 3, left: 30, bottom: -3, right: -30)
}
}
}