UITABBAR IOS 5.0如何定制?
Posted
技术标签:
【中文标题】UITABBAR IOS 5.0如何定制?【英文标题】:How to customize UITABBAR IOS 5.0? 【发布时间】:2012-04-10 11:38:34 【问题描述】:我必须自定义标签栏项目中的图像才能在我的图标中插入图像,我该怎么做? 我从朋友那里听说我应该创建一个新的 xib 并使用它来定制一个新的标签栏项目。 是真的吗?
非常感谢!
【问题讨论】:
查看这些自定义标签栏项目的示例 在这里查看答案,这可能是您的解决方案***.com/questions/9976839/… 【参考方案1】:只需将下面的方法放入
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
【讨论】:
以上是关于UITABBAR IOS 5.0如何定制?的主要内容,如果未能解决你的问题,请参考以下文章
通用应用程序中 UITabBar 内的 UISplitView 未更新详细信息视图