iOS 5中定制Tabbar很简单,如何让选中的Tab显示不同图片
第一步:获取tabbar
UITabBar *tabBar = self.tabBarController.tabBar;
第二步:获取tababr的所有选项
UITabBarItem *item = [tabBar.items objectAtIndex:0];
第三步:设置图片,选择要设置的tabbaritem
NSString *homePath = [[NSBundle mainBundle] pathForResource:@"btn_home_highlight@2x" ofType:@"png"];
if(item.tag == 1)
{
item.selectedImage = [UIImage imageWithContentsOfFile:homePath];
}
这个就搞定了
版权声明
由 durban创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/452
版权声明
由 durban创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 Gowhich博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/452