UITabbarItem只显示图标
Posted zhouhui231
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UITabbarItem只显示图标相关的知识,希望对你有一定的参考价值。
在TabBarItem设计的时候不需要title只要image的时候,如何将image居中显示。
tabBarItem.imageInsets = UIEdgeInsetsMake(6, 0, -6, 0);
item.titlePositionAdjustment = UIOffsetMake(0, self.view.safeAreaInsets.bottom + 20);//隐藏文字
这边用到的是TabBarItem的imageInsets属性:
UIEdgeInsets设置偏移量
UIEdgeInsetsMake(CGFloat top, CGFloat left, CGFloat bottom, CGFloat right)
这边重要的一点是,top和bottom要设置成相反数,不然image的大小会一直改变。
以上是关于UITabbarItem只显示图标的主要内容,如果未能解决你的问题,请参考以下文章