Container Controllers 综合

前言

本篇属个人阶段总结,纯代码,无xib,无sb,老少皆不宜。
关于作者: 周辉
All rights reserved.


本篇内容:

  • UINavigationController的使用
  • UITabBarController的使用
  • UINavigationControllerUITabBarController的综合使用
  • UITabBar, UINavigationBar介绍
  • UINavigationItem, UIBarItem, UIBarButtonItem, UITabBarItem介绍
  • 导航栏标题,背景,颜色,返回按钮等的自定义

继承关系

// controller类
UIViewController : UIResponder
  UINavigationController : UIViewController
  UITabBarController : UIViewController

// bar类
UINavigationBar : UIView
UITabBar : UIView

// item类
UINavigationItem : NSObject
UIBarItem : NSObject
  UITabBarItem : UIBarItem
  UIBarButtonItem : UIBarItem

常用属性结构

UIViewController.png
UINavigationController.png
UITabBarController.png
UINavigaitonBar.png
UITabBar.png
UINavigationItem.png
UIBarItem.png

UINavigationController 的使用

参见这篇文章

UITabBarController 的使用

参见这篇文章

综合使用

大多数的App都是对Cocoa中的UINavigationControllerUITabBarController结合使用的。下面就来看看两种结合方式:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

    UIViewController *firstViewController = [[UIViewController alloc] init];
    UIViewController *secondViewController = [[UIViewController alloc] init];
    UIViewController *thirdViewController = [[UIViewController alloc] init];

    UITabBarController *tabBarController = [[UITabBarController alloc] init];        
    tabBarController.viewControllers = @[firstViewController, secondViewController, thirdViewController];
    UINavigationController *navigationController = [[UINavigationControlle alloc] initWithRootViewController:tabBarController];
    self.window.rootViewController = tabBarController;
    [self.window makeKeyAndVisible];
    [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
    return YES;
} // 1
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

    UIViewController *firstViewController = [[UIViewController alloc] init];  
    UIViewController *secondViewController = [[UIViewController alloc] init];  
    UIViewController *thirdViewController = [[UIViewController alloc] init];  
    UINavigationController *firstNavigationController = [[UINavigationController alloc]  
                     initWithRootViewController:rootViewController];
    UINavigationController *secondNavigationController = [[UINavigationController alloc]  
                     initWithRootViewController:rootViewController];
    UINavigationController *thirdNavigationController = [[UINavigationController alloc]  
                     initWithRootViewController:rootViewController];

    NSArray* controllers = [NSArray arrayWithObjects:firstNavigationController, secondNavigationController, thirdNavigationController, nil];

    UITabBarController *tabBarController = [[UITabBarController alloc] init];  
    tabBarController.viewControllers = controllers;

    self.window.rootViewController = tabBarController; 
    [self.window makeKeyAndVisible]; 
    [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
    return YES;
} // 2

方法1显然比方法2简单许多,我们必须需要初始化5个navigation controllers来服务5个view controllers吗?

是的,为什么呢?

  1. 有些情况下在navigationController里用self点语法时候,会得到null, 因为5个viewController都被pushed on the stack 。
  2. 当你修改了navigationBar,切换到其他页面,你会发现其他页面的navigationBar也被修改了,因为只有一个navigationController,一个navigationBar
  3. 当你从tabBarController的某一个viewController里push进另一个viewController,tab bar 会消失,因为tabBarController不是rootViewController, 它仅仅是在 stack 中。

关于 bar 和 item

参见我的一个小Demo

导航栏标题,背景,颜色,返回按钮等的自定义

  • 原点坐标
UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:[ViewController new]];
nvc.navigationBar.translucent = NO;
translucent=NO ![Uploading 屏幕快照 2015-09-28 下午12.29.07_466603.png . . .].png
UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:[ViewController new]];
nvc.navigationBar.translucent = YES;
translucent = YES.png
  • 如果想把画面B返回按钮的文字去掉在,需要在画面A的 pushViewController之前调用
UIBarButtonItem *barButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"" 
                                                                     style:UIBarButtonItemStyleDone 
                                                                     target:nil 
                                                                     action:nil];
self.navigationItem.backBarButtonItem = barButtonItem;

注意一定要在 pushViewController之前,在viewDidLoad中会crash,至于为什么我也不知道。

  • 更改导航栏背景和文字颜色

    • 方法1
//set NavigationBar 背景颜色&title 颜色  
[self.navigationController.navigationBar setBarTintColor:[UIColor colorWithRed:20/255.0 green:155/255.0 blue:213/255.0 alpha:1.0]];  
[self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor],UITextAttributeTextColor,nil]];  

蓝色背景,白色title。NavigationBar极其push过去的子页面也会是修改后的背景颜色。

  • 方法2
// 设置NavigationBar背景颜色  
[[UINavigationBar appearance] setBarTintColor:[UIColor redColor]];  
// @{}代表Dictionary  
[[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor]}];
  • 导航栏使用背景图片

如果应用程序使用了自定义图像作为栏的背景,需要提供一个“更大”的图片,使其延伸了状态栏的后面。导航栏的高度现在是从44点(88像素)更改为64点(128像素)。仍然可以使用了setBackgroundImage:方法来指定自定义图像的导航栏:

[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"nav_bg.png"] forBarMetrics:UIBarMetricsDefault]; 
  • 改变导航栏标题的字体

我们可以通过使用导航栏的“titleTextAttributes”属性来自定义的文本样式。可以指定字体,文字颜色,文字阴影颜色,文字阴影在文本标题偏移属性字典,使用下面的文本属性键:

UITextAttributeFont - 字体
UITextAttributeTextColor - 文字颜色
UITextAttributeTextShadowColor - 文字阴影颜色
UITextAttributeTextShadowOffset - 偏移用于文本阴影

NSShadow *shadow = [[NSShadow alloc] init];  
shadow.shadowColor = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.8];  
shadow.shadowOffset = CGSizeMake(0, 1);  
[[UINavigationBar appearance] setTitleTextAttributes: [NSDictionary dictionaryWithObjectsAndKeys:  
[UIColor colorWithRed:245.0/255.0 green:245.0/255.0 blue:245.0/255.0 alpha:1.0], NSForegroundColorAttributeName,  
shadow, NSShadowAttributeName,  
[UIFont fontWithName:@"HelveticaNeue-CondensedBlack" size:21.0], NSFontAttributeName, nil nil]];  
  • 使用图片作为导航栏标题
self.navigationItem.titleView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"appcoda-logo.png"]]; 
  • 添加多个栏按钮项目
UIBarButtonItem *shareItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction target:self action: nil nil];  
UIBarButtonItem *cameraItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCamera target:self action: nil nil];  
NSArray *itemsArr = @[shareItem,cameraItem];  
self.navigationItem.rightBarButtonItems = itemsArr;  
  • 自定义后退按钮的文字和颜色
    通常情况下,我们使用 UINavigationController时,push到的子页面,左上角会是系统自动取值上一层父页面的title名称,默认情况是这样。我们有多种方法改变之。
  • 方法
    通过设置navigationItem的backBarButtonItem可以直接更换文字,【注意,要在父视图的Controller中设置】如下:
UIBarButtonItem *item = [[UIBarButtonItem alloc] initWithTitle:@"返回" style:UIBarButtonItemStylePlain target:nil action:nil];  
self.navigationItem.backBarButtonItem = item;  

所有的子界面返回时都变成了我们定义的文字,如果不想显示文字,直接"",就会单独显示一个系统的返回箭头图标,也是很清晰的感觉。

  • 自定义其颜色
    在iOS7,可以改变tintColor属性,它提供了一个快速和简单的方式,下面是一个示例代码片段:
[[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];
  • 另外一种实现自定义导航控制器返回按钮:
[self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor redColor],NSFontAttributeName:[UIFont systemFontOfSize:19.0]}];  
self.title=[NSString stringWithFormat:@"第%lu页",(unsigned long)self.navigationController.viewControllers.count];  
//自定义返回按钮  
UIImage *backButtonImage = [[UIImage imageNamed:@"fanhui.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 30, 0, 0)];  
[[UIBarButtonItem appearance] setBackButtonBackgroundImage:backButtonImage forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];  
//将返回按钮的文字position设置不在屏幕上显示  
[[UIBarButtonItem appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(NSIntegerMin, NSIntegerMin) forBarMetrics:UIBarMetricsDefault];  

注意 title

只要设置 self.title,那么self.navigationItem.titleself.tabBarItem.title值不管设置与否都和self.title一致。

self.title要在- (id)init:里写,否则在tabBar里不加载的几个bar不显示title。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,839评论 6 482
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,543评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 153,116评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,371评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,384评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,111评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,416评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,053评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,558评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,007评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,117评论 1 334
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,756评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,324评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,315评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,539评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,578评论 2 355
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,877评论 2 345

推荐阅读更多精彩内容