标签: ios uitabbarcontroller
我想实现这样的事情:
我想要的是所选标签栏项目不显示标题并使图标变大。
事情是,尝试更改项目图像框架不起作用。
任何指针?
提前谢谢
答案 0 :(得分:0)
您可以将UITabBarItem的标题设置为nil并设置imageInsets,如下所示:
nil
imageInsets
myTabBarItem.title = nil; myTabBarItem.imageInsets = UIEdgeInsetsMake(0, 0, -10, 0);
将标题设置为nil会使标题不显示,然后图像插入调整会占用为标题保留的空格。
另见: Moving UITabBarItem Image down?