My tabbar consists only of text, no images.
The problem is that the text always show on the bottom of the tab, is there a way to position the text in the middle ?
Thank you
Got it!
[tab.tabBarItem setTitlePositionAdjustment:UIOffsetMake(0, -10)]
A supplement, if you set multi viewControllers in tabBarController, you should use the following:
for (UITabBarItem* item in tabBarController.tabBar.items)
{
[item setTitlePositionAdjustment:UIOffsetMake(0, -10)];
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With