How to move title of UITabBarItem?

后端 未结 5 2124
长发绾君心
长发绾君心 2021-02-13 04:08

Can somebody tell me please how can I move title of UITabBarItem for example 2px to top?

5条回答
  •  我寻月下人不归
    2021-02-13 04:43

    Update for Swift 3

    Put this code inside UITabBarController:

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

    Credit goes to Tim Brown

提交回复
热议问题