zoukankan      html  css  js  c++  java
  • 自定义tabbar

    新建一个继承UITabbar的类

    - (void)viewDidLoad {

        [super viewDidLoad];

        LFHomeTableViewController *home=[[LFHomeTableViewController alloc]init];

        [self addChildVC:home Title:@"首页" image:@"tabbar_home" selectedImage:@"tabbar_home_selected"];

        

        LFMessageTableViewController *discover=[[LFMessageTableViewController alloc]init];

        [self addChildVC:discover Title:@"消息" image:@"tabbar_message_center" selectedImage:@"tabbar_message_center_selected"];

        

        LFDiscoverTableViewController *message=[[LFDiscoverTableViewController alloc]init];

        [self addChildVC:message Title:@"发现" image:@"tabbar_discover" selectedImage:@"tabbar_discover_selected"];

        

        LFProfileTableViewController *profile=[[LFProfileTableViewController alloc]init];

        [self addChildVC:profile Title:@"我" image:@"tabbar_profile" selectedImage:@"tabbar_profile_selected"];

    }

    - (void)addChildVC:(UIViewController *)childVC Title:(NSString *)title image:(NSString *)image selectedImage:(NSString *)selectedImage

    {

        childVC.title=title;

        childVC.tabBarItem.image=[UIImage imageNamed:image];

        childVC.tabBarItem.selectedImage=[[UIImage imageNamed:selectedImage]imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

        

        //设置文字的样式

        NSMutableDictionary *textAttrs=[NSMutableDictionary dictionary];

        textAttrs[NSForegroundColorAttributeName]=LFColor(123, 123, 123);

        [childVC.tabBarItem setTitleTextAttributes:textAttrs forState:UIControlStateNormal];

        

        NSMutableDictionary *selectTextAttrs=[NSMutableDictionary dictionary];

        selectTextAttrs[NSForegroundColorAttributeName]=[UIColor orangeColor];

        [childVC.tabBarItem setTitleTextAttributes:selectTextAttrs forState:UIControlStateSelected];

        childVC.view.backgroundColor=LFRandomColor;

        

        UINavigationController *nav=[[UINavigationController alloc]initWithRootViewController:childVC];

        [self addChildViewController:nav];

    }

     在AppDelegate.m文件中添加

       self.window.rootViewController=[[LFTabbarViewController alloc]init];就行了

    运行效果截图:

     

  • 相关阅读:
    VS2008 查找失效怎么办
    Winfrom弹出下拉编辑控件,DataGridView弹出查询对话框下拉录入,支持TextBox
    修改SQL Server 2005的默认端口
    C#操作XML小结
    金蝶KIS系列 KISBOS 二次开发学习资料 例子 习题 讲解
    Datawindow.net中实现让当前行选中,并且当前行以其他颜色显示
    sqlserver 截取字符串
    python3定时爬虫
    linux下安装pyenv及使用pyenv管理不同的python版本
    CentOS7下安装mysql最快捷方式及mysql远程访问连接实现
  • 原文地址:https://www.cnblogs.com/ITliufei/p/5250754.html
Copyright © 2011-2022 走看看