我正在使用代码显示带有项目的 UITabBar,我下载了一个示例,该示例显示带有“收藏夹”“联系人”的系统图标的项目......
UITabBarItem *favorites = [[UITabBarItem alloc] initWithTitle:nil image:a1 tag:0];
UITabBarItem *topRated = [[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemTopRated tag:1];
UITabBarItem *featured = [[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemFeatured tag:2];
UITabBarItem *recents = [[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemRecents tag:3];
我想使用我自己的图像,所以我更改了第一行(收藏夹),但是当我设置它时,图像从中间开始,并且总是在标题的小地方,即使它是空的。
如何控制这些项目内的图像位置?并禁用空标题位置?