是否可以让 UITabBarItem 上没有图像空间?
我知道在 UITabBarItem 上添加图像是可选的,但在所有情况下,文本都会以丑陋的方式出现在按钮底部。
所以,我的问题是,有没有办法将文本垂直集中在 UITabBarItem 上?
I know it is optional to add an image on the UITabBarItem but in all cases, the text appears at the bottom of the Button in an ugly way.
So, my question is, is there a way to centralize the text vertically on the UITabBarItem ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有办法直接做到这一点。您可以通过制作仅包含您希望显示的文本的图像并将其用作选项卡的图像来实现解决方法。
There is no way to do this directly. You can implement a work around by making an image that contains only the text you wish to display and using that as the image for the tab.
您可以在运行时绘制文本的图像并将其添加到
tabBarItem
的image
这也将解决 I18N 问题。
查看此链接
Rob 的回答
You can draw the image of the text at runtime and add it to the
tabBarItem
'simage
This will solve the I18N issue too.
Check out this link
Rob's Answer