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

问题描述 投票:1回答:1

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

enter image description here

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

enter image description here

我试过这段代码:

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

但它不起作用。想法?

ios swift uikit uitabbaritem
1个回答
3
投票

使用偏移调整标签栏项目标题的位置。

UITabBarItem.appearance().titlePositionAdjustment = UIOffset(horizontal: 0, vertical: -10)
© www.soinside.com 2019 - 2024. All rights reserved.