UITabBarItem title in centre of title, not at bottom

心不动则不痛 提交于 2019-12-23 20:21:16

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!