iOS UITabBarController


//1.使用步骤:

    

    //1)初始化UITabBarController

    

    //2)设置UIWindowrootViewControllerUITabBarController

    

    //3)创建相应的子控制器(viewcontroller

    

    //4)把子控制器添加到UITabBarController

    UITabBarController *tbC = [[UITabBarController alloc]init];

    tbC.tabBar.barTintColor = [UIColor yellowColor];

    //创建子控制器

    nav.tabBarItem.title = @"消息";

    nav.tabBarItem.image = [UIImage imageNamed:@"tabbar_message_center"];

    nav.tabBarItem.badgeValue = @"123";

    

    TowViewController *tow = [TowViewController new];

    tow.tabBarItem.title = @"收索";

    tow.tabBarItem.image = [UIImage imageNamed:@"tabbar_discover"];

    tow.tabBarItem.selectedImage = [UIImage imageNamed:@"tabbar_discover_selected"];

    

    threeViewController *three = [threeViewController new];

    three.tabBarItem.title = @"收索";

    three.tabBarItem.image = [UIImage imageNamed:@"tabbar_discover"];

    

    FourViewController *four = [FourViewController new];

    four.tabBarItem.title = @"收索";

    four.tabBarItem.image = [UIImage imageNamed:@"tabbar_discover"];

    

    //添加子控制器到UITabBarController

    tbC.viewControllers = @[nav,tow,three,four];

    //设置默认显示的子控制器

    tbC.selectedIndex = 0;

    //3.设置根视图

    self.window.rootViewController = tbC;

    //4、显示窗口

    [self.window makeKeyAndVisible];



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值