UITabBarController和UINavigationController相似,UITabBarController也能夠輕鬆地管理多個控制器,輕鬆完成控制器之間的切換,典型的例子就是QQ、微信等應⽤。微信
2、UITabBarController的使用app
1.使用步驟:工具
(1)初始化UITabBarController編碼
(2)設置UIWindow的rootViewController爲UITabBarControllerspa
(3)建立相應的子控制器(viewcontroller)代理
(4)把子控制器添加到UITabBarControllercode
2.代碼示例blog
新建一個空的文件,在Application的代理中編碼it
YYAppDelegate.m文件io
//
// YYAppDelegate.m
// 01-UITabBar控制器基本使用
//
// Created by 孔醫己 on 14-6-7.
// Copyright (c) 2014年 itcast. All rights reserved.
//
#import "YYAppDelegate.h"
@implementation YYAppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
//1.建立Window
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.backgroundColor = [UIColor whiteColor];
//a.初始化一個tabBar控制器
UITabBarController *tb=[[UITabBarController alloc]init];
//設置控制器爲Window的根控制器
self.window.rootViewController=tb;
//b.建立子控制器
UIViewController *c1=[[UIViewController alloc]init];
c1.view.backgroundColor=[UIColor grayColor];
c1.view.backgroundColor=[UIColor greenColor];
c1.tabBarItem.title=@"消息";
c1.tabBarItem.image=[UIImage imageNamed:@"tab_recent_nor"];
c1.tabBarItem.badgeValue=@"123";
UIViewController *c2=[[UIViewController alloc]init];
c2.view.backgroundColor=[UIColor brownColor];
c2.tabBarItem.title=@"聯繫人";
c2.tabBarItem.image=[UIImage imageNamed:@"tab_buddy_nor"];
UIViewController *c3=[[UIViewController alloc]init];
c3.tabBarItem.title=@"動態";
c3.tabBarItem.image=[UIImage imageNamed:@"tab_qworld_nor"];
UIViewController *c4=[[UIViewController alloc]init];
c4.tabBarItem.title=@"設置";
c4.tabBarItem.image=[UIImage imageNamed:@"tab_me_nor"];
//c.添加子控制器到ITabBarController中
//c.1第一種方式
// [tb addChildViewController:c1];
// [tb addChildViewController:c2];
//c.2第二種方式
tb.viewControllers=@[c1,c2,c3,c4];
//2.設置Window爲主窗口並顯示出來
[self.window makeKeyAndVisible];
return YES;
}
@end
實現效果:
3、重要說明
1.UITabBar
下方的工具條稱爲UITabBar ,若是UITabBarController有N個子控制器,那麼UITabBar內部就會有N 個UITabBarButton做爲子控件與之對應。
注意:UITabBarButton在UITabBar中得位置是均分的,UITabBar的高度爲49。
在上面的程序中,UITabBarController有4個子控制器,因此UITabBar中有4個UITabBarButton,UITabBar的結構⼤大體以下圖所示:
2.UITabBarButton
UITabBarButton⾥面顯⽰什麼內容,由對應子控制器的tabBarItem屬性來決定
c1.tabBarItem.title=@"消息"; c1.tabBarItem.image=[UIImage imageNamed:@"tab_recent_nor"];
3.有兩種方式能夠往UITabBarController中添加子控制器
(1)[tb addChildViewController:c1];
(2)tb.viewControllers=@[c1,c2,c3,c4];
注意:展現的順序和添加的順序一致,和導航控制器中不一樣,展示在眼前的是第一個添加的控制器對應的View。