0

我必须自定义标签栏项目中的图像才能在我的图标中插入图像,我该怎么办?我从朋友那里听说我应该创建一个新的 xib 并使用它来定制一个新的标签栏项目。这是真的吗?

多谢!

4

1 回答 1

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"]];

}

这可能会对您有所帮助 请在此站点上找到更多信息

于 2012-04-10T11:50:17.167 回答