我必须自定义tabbar项目中的图像以在我的图标中插入图像,我该怎么办? 我从朋友那里听说我应该创建一个新的xib,然后用它来自定义一个新的tabbar项目。 这是真的吗?
非常感谢!
答案 0 :(得分:0)
将下面的方法放在
中appdelegate.m
文件
- (void)customizeAppearance
{
// Costomise UITabBar
// Note you can also specify “finished” and “unfinished” images if you wish to modify the manner in which the selected & unselected images appear.
UIImage *tabBackground = [[UIImage imageNamed:@"tab_bg"]resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0, 0)];
[[UITabBar appearance] setBackgroundImage:tabBackground];
[[UITabBar appearance] setSelectionIndicatorImage:[UIImage imageNamed:@"tab_select_indicator"]];
}
这可能会对你有所帮助
Please find much more on this site