zoukankan      html  css  js  c++  java
  • ios更改UITabBarController背景以及选中背景图片的方法

    一、背景图片
      1、5.0以上版本
         UIImage *image = [UIImage imageNamed:@"system_tabbar_bg.png"];
         [self.tabBar setBackgroundImage:image];
      2、5.0以下版本
         UIImage *image = [UIImage imageNamed:@"system_tabbar_bg.png"];
         NSArray *array = [self.view subviews];
         UITabBar *tabBar = [array objectAtIndex:1];
         tabBar.layer.contents = (id)image.CGImage;
     
      二、选中的item的背景图片设置
      1、5.0以上版本
         self.tabBar.selectionIndicatorImage = [UIImage imageNamed:@"system_tabbar_item_selected.png"];
      2、5.0以下版本
         首先实现如下方法:
    - (void)setNoHighlistTabBar:(UITabBarController *)tabBarController
    {
        NSArray * tabBarSubviews = [tabBarController.tabBar subviews];
       
        int index4SelView;
       
        if(tabBarController.selectedIndex+1 > 4)
        {//selected the last tab.
            index4SelView = [tabBarSubviews count]-1;
        }
        else if([tabBarController.viewControllers count] > 5)
        {//have "more" tab. and havn't selected the last tab:"more" tab.
           
           
            index4SelView = [tabBarSubviews count] - 5 + tabBarController.selectedIndex;
        }
        else
        {//have no "more" tab.
           
           
            index4SelView = [tabBarSubviews count] -
            [tabBarController.viewControllers count] + tabBarController.selectedIndex;
        }
        if([tabBarSubviews count] < index4SelView+1)
        {
            assert(false);
            return;
        }
        UIView * selView = [tabBarSubviews objectAtIndex:index4SelView];
       
        NSArray * selViewSubviews = [selView subviews];
       
        for(UIView * v in selViewSubviews)
        {
            if(v && [NSStringFromClass([v class]) isEqualToString:@"UITabBarSelectionIndicatorView"])
           
            {//the v is the highlight view.
                [self.selectedItemBgImageView removeFromSuperview];
                [selView insertSubview:self.selectedItemBgImageView belowSubview:v];
               
                [v removeFromSuperview];
               
               
                break;

            }
        }
    }
      改方法的实质就是循环tabBar的subViews, 找到tabBar中的这个view, 是一个UITabBarSelectionIndicatorView的view,然后把它替换成你自己创建的UIImageView, 上例中的self.selectedItemBgImageView.
      然后需要把UITabBarController的delegate设为self, 在tabBarController:didSelectViewController的代理方法中执行上面的方法:[self setNoHighlistTabBar:self];
     还有setSelectIndex:方法中也要执行[self setNoHighlistTabBar:self];

    ============以下为20200220 更新===========

    在13 的新系统上 bar的文字选中色在经过push操作后变蓝,如上图所示.这个是ios 13 系统的一个bug。需要程序员来填坑。

    解决办法:在设置tabbar相关appearance的代码处,再单独加一个13系统的处理即可:

    if(@available(iOS13.0, *)) {

            [[UITabBar appearance] setTintColor:[UIColor greenColor]];

            [[UITabBar appearance] setUnselectedItemTintColor:[UIColor grayColor]];

        }



    更多链接请看
    链接:
    https://www.jianshu.com/p/96096df52b53
    https://www.jianshu.com/p/82b94ceb38d0
    https://www.jianshu.com/p/a5461adff3ae
  • 相关阅读:
    kata rootfs 文件系统
    crt task
    如何在不到1个月内过四级?
    Android Studio软件技术基础 —Android项目描述---1-类的概念-android studio 组件属性-+标志-Android Studio 连接真机不识别其他途径
    如何把Eclipse项目迁移到AndroidStudio(如何把项目导入安卓)--这我很困惑
    设置Git--在Git中设置您的用户名--创建一个回购--Fork A Repo--社会化
    JavaScript代码笔记重点:
    Android编程权威指南笔记3:Android Fragment讲解与Android Studio中的依赖关系,如何添加依赖关系
    Android编程权威指南笔记2:解决R文件爆红问题和SDK概念
    Java代码题目:计算奖金和完全平方数
  • 原文地址:https://www.cnblogs.com/isItOk/p/4875569.html
Copyright © 2011-2022 走看看