关于UITabBar配置

简介:

为了适配6.0版本,需要做额外处理,同时由于7.0版本以后新增了一些API,如果没有注意到这些变化,

设置了图片并没有达到预期的效果。


下面是关键代码,适配了6.0:


  UITabBarItem *item2 = [[UITabBarItem alloc] init];
  item2.title = @"消息";
  if (kIOSVersion >= 7) {
    item2.image = [kImageWithName(@"messageUnselect") imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
    item2.selectedImage = [kImageWithName(@"messageSelected") imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

    [item2 setTitleTextAttributes:@{NSForegroundColorAttributeName : kAssistOrangeColor}
                         forState:UIControlStateSelected];
    [item2 setTitleTextAttributes:@{NSForegroundColorAttributeName : kBColor}
                         forState:UIControlStateNormal];
  } else {
    [item2 setFinishedSelectedImage:kImageWithName(@"messageSelected")
        withFinishedUnselectedImage:kImageWithName(@"messageUnselect")];

    [item2 setTitleTextAttributes:@{UITextAttributeTextColor : kAssistOrangeColor}
                         forState:UIControlStateSelected];
    [item2 setTitleTextAttributes:@{UITextAttributeTextColor : kBColor}
                         forState:UIControlStateNormal];
  }


目录
相关文章
|
7月前
|
iOS开发 容器
什么是 UINavigationController 和 UITabBarController?它们有什么作用?
什么是 UINavigationController 和 UITabBarController?它们有什么作用?
47 2
|
Swift iOS开发
iPad上的ActionSheet
最近公司的应用要做iPad的适配,所以这两天一直在调整项目的大小。
UITabBarController 获得selecdIndex
UITabBarController 获得selecdIndex
78 0
UINavigationController和UITabBarController合用。
UINavigationController和UITabBarController合用。
75 0
UINavigationBar-使用总结
UINavigationBar-使用总结
123 0
|
iOS开发
修改UISearchBar背景颜色
修改UISearchBar背景颜色
182 0
|
容器
(三)UITabBarController和UITabBar的基本用法
(三)UITabBarController和UITabBar的基本用法
327 0