Only image as UITabBarItem

后端 未结 9 2070
伪装坚强ぢ
伪装坚强ぢ 2021-02-01 05:29

I would only like to have an icon as the UITabBarItem and not the text underneath and I was wondering if this was possible, if so, how? TIA

9条回答
  •  失恋的感觉
    2021-02-01 05:34

    Setting the item's title to nil is often insufficient, because if you set the view controller's title it will set the title of the tabbar item also.

    Instead, do this:

    tabbarItem.titlePositionAdjustment = UIOffsetMake(0.f, 50.f);
    

提交回复
热议问题