UITabBarController
標(biāo)簽視圖控制器
UITabBar
標(biāo)簽,包含多個(gè)UITabBarItem衔统,每一個(gè)UITabBarItem對(duì)應(yīng)一個(gè)UIViewController,UITabBar的高度是49蹂匹。系統(tǒng)最多只顯示5個(gè)UITabBarItem岛都,當(dāng)UITabBarItem超過5個(gè)時(shí)系統(tǒng)會(huì)自動(dòng)添加一個(gè)更多按鈕。
UIAppearance
如果想通過一件設(shè)定所有導(dǎo)航視圖控制器的顏色队魏,類似于QQ的一鍵換膚操作公般,可以通過UIAppearance協(xié)議來進(jìn)行操作。
FirstViewController *fisrtVC = [[FirstViewController alloc] init];
UINavigationController *firstNaVC = [[UINavigationController alloc] initWithRootViewController:fisrtVC];
firstNaVC.tabBarItem = [[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemBookmarks tag:101];
firstNaVC.tabBarItem.badgeValue = @"10";
SecondViewController *secondVC = [[SecondViewController alloc] init];
UINavigationController *secondNaVC = [[UINavigationController alloc] initWithRootViewController:secondVC];
secondNaVC.tabBarItem = [[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemContacts tag:102];
secondNaVC.tabBarItem.badgeValue = @"未讀";
ThirdViewController *thirdVC = [[ThirdViewController alloc] init];
UINavigationController *thirdNaVC = [[UINavigationController alloc] initWithRootViewController:thirdVC];
thirdNaVC.tabBarItem = [[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemFavorites tag:103];
thirdNaVC.tabBarItem.badgeValue = @"警告";
// 1.創(chuàng)建UITabBarController
UITabBarController *tabBarVC = [[UITabBarController alloc] init];
// 2.將tabBarVC管理的視圖控制器放到一個(gè)數(shù)組中
NSArray *VCs = [NSArray arrayWithObjects:firstNaVC, secondNaVC, thirdNaVC, nil];
// 3.設(shè)置tabBarVC的子視圖控制器
tabBarVC.viewControllers = VCs;
self.window.rootViewController = tabBarVC;
// 設(shè)置tabBarVC的屬性
tabBarVC.tabBar.tintColor = [UIColor redColor];// 設(shè)置選中顏色
tabBarVC.tabBar.backgroundColor = [UIColor lightGrayColor];// 設(shè)置背景顏色
tabBarVC.tabBar.translucent = YES;// 是否半透明胡桨,默認(rèn)為YES
// 設(shè)置全局外觀官帘,設(shè)置全局外觀最好在appDelegate里,否則會(huì)無效
[[UITabBar appearance] setBarTintColor:[UIColor cyanColor]];// 設(shè)置UITabBar背景顏色
[[UITabBar appearance] setTintColor:[UIColor brownColor]];// 設(shè)置UITabBar樣式
[[UINavigationBar appearance] setBarTintColor:[UIColor lightGrayColor]];// 設(shè)置UINavigationBar外觀顏色
[[UINavigationBar appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor redColor], NSForegroundColorAttributeName, [UIFont systemFontOfSize:17], NSFontAttributeName, nil]];// 設(shè)置UINavigationBar字體屬性
- UITabBarController昧谊、UINavigationController刽虹、UITableViewController通常都是組合出現(xiàn),這種布局方式特別常見呢诬。
- UITabBarController可以嵌套UINavigationController涌哲。
- UITabBarController也可以模態(tài)UINavigationController。
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者