以编程方式将图标置于 UITabBarController 中的 TabBarItem 中
我正在以编程方式生成 UITabBarController (实例化视图控制器并将它们分配给我的 UITabBarController 的 viewControllers 数组)。我不想要我的 TabBarItems 的标题。但是,TabBarItems 默认情况下会为标题留出空间,因此我的图标图像的中心位置比应有的位置高 5 个像素。是否有一种编程方法可以“居中”,即移动或偏移 TabBarItem 的图像?
I'm programmatically generating a UITabBarController (instantiating view controllers and assigning them to my UITabBarController's viewControllers array). I don't want titles for my TabBarItems. However, the TabBarItems by default make space for a title, so my icon images are centered 5 pixels higher than they should be. Is there a programmatic way to "center" i.e. shift or give offsets to the TabBarItem's image?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 imageInsets 属性来移动图标的框架。
You can use the imageInsets property to move the frame of the icon.
不幸的是,没有办法做到这一点(即使你设法作弊并找到一种方法来将这些东西向下移动,毫无疑问苹果会在审批过程中拒绝)。
Unfortunately, there isn't a way to do this (and even if you managed to cheat and find a way to shift this stuff down it would no doubt be denied by Apple during the approval process).