iOS 7 UITabBar徽章位置

有没有办法调整iOS 7中UITabBar徽章的位置?该徽章现在将阻止标签栏图标比我想要的更多.

iOS 6:

IOS 7:

解决方法

如果可能,您可以提供设置标签栏图像的方法吗?

我也遇到了同样的问题,并使用UIImageRenderingModeAlwaysOriginal修复它:

UIImage *image = // Your tab bar item image
UIImage *selected = // Your selected tab bar item image

image = [image imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
selected = [selected imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

controller.tabBarItem = [[UITabBarItem alloc] initWithTitle:title
                                                      image:image
                                              selectedImage:selected];

干杯!

相关文章

当我们远离最新的 iOS 16 更新版本时,我们听到了困扰 Apple...
欧版/美版 特别说一下,美版选错了 可能会永久丧失4G,不过只...
一般在接外包的时候, 通常第三方需要安装你的app进行测...
前言为了让更多的人永远记住12月13日,各大厂都在这一天将应...