问题
I want to make place tabbaritem.title in centre of item, it's possible? I'm trying make image with text in center and create custom tabbaritem, but it looks awful.Help me please.
回答1:
Try with the iOS5 Appearance Proxy:
[[UITabBarItem appearance] setTitlePositionAdjustment:UIOffsetMake(0.0, -2.0)];
回答2:
Have you tried using setTitlePositionAdjustment::[UIOffsetMake(<#CGFloat horizontal#>, <#CGFloat vertical#>)]
?
If that doesn't work, why don't you create your own control? Have it subclass NSObject and implement the UIImageView with the centered text
来源:https://stackoverflow.com/questions/5432169/uitabbaritem-title-in-centre-of-title-not-at-bottom