如何减少UITabBarItem图像和文本之间的垂直填充?

时间:2018-12-25 12:51:27

标签: ios swift uikit uitabbaritem

我想减少UITabBarItem及其文本之间的垂直填充:

enter image description here

ie为了使它看起来像这样:

enter image description here

我尝试了以下代码:

    let pStyle = NSMutableParagraphStyle()
    pStyle.lineSpacing = -10.0
    UITabBarItem.appearance().setTitleTextAttributes([.paragraphStyle: pStyle], for: .normal)

但是没有用。想法?

1 个答案:

答案 0 :(得分:3)

调整标签栏项目标题的位置并具有一定的偏移量。

UITabBarItem.appearance().titlePositionAdjustment = UIOffset(horizontal: 0, vertical: -10)