`

UINavigationController 和 ModalViewController

阅读更多
当程序中含有多个 view,需要在之间切换的时候,可以使用 UINavigationController,或者是 ModalViewController。UINabigationController 是通过向导条来切换多个 view。而如果 view 的数量比较少,且显示领域为全屏的时候,用 ModalViewController 就比较合适(比如需要用户输入信息的view,结束后自动回复到之前的view)。今天我们就看看 ModalViewController 的创建方法。

    ModalViewController 并不像 UINavigationController 是一个专门的类,使用 UIViewController 的 presentModalViewController 方法指定之后就是 ModalViewController 了。

    这里使用上两回做成的 CustomViewController(由UIViewController继承)来实现 ModalViewController 的实例。

    首先,准备 ModalViewController 退出时的函数。调用 UIViewController 的 dismissModalViewController:Animated: 方法就可以了,如下所示:

// 这里按钮按下的时候退出 ModalViewController
-(void)dismiss:(id)inSender {
    // 如果是被 presentModalViewController 以外的实例调用,parentViewController 将是nil,下面的调用无效
    [self.parentViewController dismissModalViewControllerAnimated:YES];
}

    接下来,生成另一个 CustomViewController 的实例,用来表示 ModalViewController,并将其对应的 view 设置成红色。然后传递给 presentModalViewController: Animated: 显示 ModalViewController 的 view。

- (void)applicationDidFinishLaunching:(UIApplication *)application {
    controller = [[CustomViewController alloc] init];
    [window addSubview:controller.view];
    [window makeKeyAndVisible];
    // 生成 ModalViewController
    CustomViewController* controllerB = [[CustomViewController alloc] init];
    // 设置 view 的背景为红色
    controllerB.view.backgroundColor = [UIColor redColor];
    // 显示 ModalViewController view
    [controller presentModalViewController:controllerB animated:YES];
    // presentModalViewController 已经被 controller 管理,这里可以释放该实例了
    [controllerB release];
}

    编译执行以后,首先启动的是红色背景的 ModalViewController view、按下按钮后恢复到蓝色背景的通常 view 上。

    也可以在显示 ModalViewController view 之前设置 UIViewContrller 的 modalTransitionStyle 属性,使其以动画形式显示。

controllerB.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;



    以上的实现只是单一地实现了 ModalViewController view 的功能,除了程序开始提醒用户一些信息外什么也做不了。另外由于是放入了 applicationDidFinishLaunching 中的原因,也不能反复的显示。另外,在 ModalViewController view 上设置的内容也不能反映到原来的 view 上。

    接下来我们将实现这些功能。

    首先,从 ModalViewController view 退出的时候,需要通知原先的 view。这里使用 iPhone/Cocoa 应用程序中经常使用的Delegate 设计模式(也是推荐使用的)。

    实际上,系统所提供的图像选择控制类 UIImagePickerController。或者是参照地址簿时的ABPeoplePickerNavigationController 类,都用到了 Delegate 模式。

    基于上一讲的中的例子,这里我们追加为3个按钮,分别是绿色,灰色和取消。

- (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor = [UIColor blueColor];
    UIButton* button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    button.frame = CGRectMake(100,100,100,100);
    button.tag = 1;
    [button setTitle:@"绿色" forState:UIControlStateNormal];
    // 按钮事件对应函数
    [button addTarget:self action:@selector(dismiss:)
        forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:button];

    button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    button.frame = CGRectMake(100,200,100,100);
    button.tag = 2;
    [button setTitle:@"灰色" forState:UIControlStateNormal];
    // 按钮事件对应函数
    [button addTarget:self action:@selector(dismiss:)
        forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:button];

    button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    button.frame = CGRectMake(100,300,100,100);
    button.tag = 0;
    [button setTitle:@"取消" forState:UIControlStateNormal];
    // 按钮事件对应函数
    [button addTarget:self action:@selector(dismiss:)
        forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:button];
}

    程序启动的时候依然是先显示 ModalViewController view,按下任何一个按钮,将关闭该view。按下“绿色”按钮,设置背景为绿色,按下“灰色”按钮时,设置背景为灰色。“取消”的时候什么也不做。

    委托处理用下面的函数实现,当参数 inColor 为 nil 的时候代表取消。

-(void)selectColor:(UIColor*)inColor;

    委托代理的实例用 id 变量表示。

@interface CustomViewController : UIViewController {
    id colorSelectDelegate;
}

    设置该变量的函数如下。

-(void)setColorSelectDelegate:(id)inDelegate {
    colorSelectDelegate = inDelegate;
}

    另外如上面 viewDidLoad 所示,按钮的 tag 分别为0、1、2。按钮按下时调用的函数中由不同的 tag 来发送不同的 UIColor实例到 colorSelectDelegate 上。

-(void)dismiss:(id)inSender {
    UIView* view = (UIView*)inSender;
    UIColor* requestColor = nil;
    if (view.tag == 1)
        requestColor = [UIColor greenColor];
    if (view.tag == 2)
        requestColor = [UIColor grayColor];
    [colorSelectDelegate selectColor:requestColor];
}

    这是不使用 UIButton* 而是用 UIView* ,是因为 tag 属性被定义在 UIView 类中,不需要必须转换为 UIButton 类。另外这样一来,该函数在 UIButton 以外的情况下也能被使用。如果想检查 id 是什么类性的可以使用 isKindOfClass: 方法。

    接收到具体的参数 inColor 更换背景色,并关闭 ModalViewController view。

-(void)selectColor:(UIColor*)inColor {
    if (inColor != nil)
        self.view.backgroundColor = inColor;
    [self dismissModalViewControllerAnimated:YES];
}

    另外,在调用 presentModalViewController 之前(显示 ModalViewController view 之前),需要设定委托的实例。

- (void)applicationDidFinishLaunching:(UIApplication *)application {
    controller = [[CustomViewController alloc] init];
    [window addSubview:controller.view];
    [window makeKeyAndVisible];
    // 创建 ModalViewController view 的 Controller
    CustomViewController* controllerB = [[CustomViewController alloc] init];
    // 设置背景色为红色
    controllerB.view.backgroundColor = [UIColor redColor];
    // 设置委托实例
    [controllerB setColorSelectDelegate:controller];
    // 显示 ModalViewController view
    [controller presentModalViewController:controllerB animated:YES];
    [controllerB release];
}

    编译一下,程序启动后显示红色背景的 ModalViewController view,点击绿色按钮后,原先的view的背景变为绿色,点击灰色,显示灰色的背景,而点击取消,那么将显示原先蓝色的背景。

    这样的形式,就是将按钮的动作委托给原先view的 Controller 来处理了。根据送来的 UIColor 来设置不同的背景色
分享到:
评论

相关推荐

    UITabBarController和UINavigationController混用

    在iOS应用开发中,`UITabBarController` 和 `UINavigationController` 是两种常用且重要的控制器,它们各自负责不同的界面展示逻辑。`UITabBarController` 通常用于实现底部标签栏切换不同功能模块,而 `...

    iOS 自定义UINavigationController和UITabBarController

    在iOS应用开发中,`UINavigationController`和`UITabBarController`是两个核心的控制器,用于构建常见的用户界面结构。它们分别是导航栈和标签页切换器,但有时开发者可能需要根据应用的需求进行定制,以实现独特的...

    iOS开发例程 -- UINavigationController和UITabBarController合用

    很多时候我们创建一个基于UITabBarController的application以后还希望能够在每个tab view都可以实现导航控制,即添加一个UINavigationController来实现tabview内部的view之间的切换,这即是本文所要介绍的。

    UITabBarController和UINavigationController的整合使用

    UITabBarController和UINavigationController的整合使用DEMO,详情见:http://blog.csdn.net/hwe_xc/article/details/50588500

    UINavigationController详解与使用(二)页面切换和segmentedController

    在iOS开发中,`...此外,还可以自定义`UINavigationController`的过渡动画,通过实现`UINavigationControllerDelegate`的`animationControllerForOperation:fromViewController:toViewController:`和`...

    UINavigationController+UITabBarController框架

    我们写iOS项目的时候,基本都是一个UINavigationController套一个UITabBarController的形式,就是上面一个导航栏,下面几个按钮的工具条的形式。我写了几个应用,发现如果每次都重新写的话完全就是浪费精力和时间,...

    UINavigationController demo

    在这个"UINavigationController demo"中,我们将探讨如何简单地使用`UINavigationController`以及如何在其上添加自定义导航按钮,包括图片按钮和switch按钮。 首先,要创建一个`UINavigationController`实例,通常...

    UINavigationController返回按钮的事件

    上传的demo关于UINavigationController中back按钮的重写方法, UINavigationController的back按妞本身是没有监听方法的,但是我们通过添加类目可以使back按钮具有监听的作用.让我们能在UINavigationController触发返回...

    页面跳转 UITabBarController+UINavigationController+UIViewController

    在iOS应用开发中,`UITabBarController`、`UINavigationController`和`UIViewController`是三个非常重要的视图控制器类,它们协同工作,构建出用户友好的界面和流畅的导航体验。`UITabBarController`用于实现底部...

    IOS7 UINavigationController滑动Demo

    在iOS开发中,UINavigationController是苹果提供的一种容器类视图控制器,它负责管理一...通过深入研究这个Demo,开发者可以更好地理解和控制UINavigationController的滑动行为,为自己的应用带来更加流畅的用户体验。

    UINavigationController Demo代码

    首先,`UINavigationController`是`UIViewController`的子类,它的主要职责是维护一个`UIViewController`的数组,这些控制器按照它们被压入和弹出的顺序排列。通过调用`pushViewController:animated:`方法,可以将新...

    iOS 使用UINavigationController进行页面间跳转

    默认情况下,`UINavigationController`会显示一个导航栏,包含返回按钮和其他可定制的项目。导航栏上的按钮和标题可以随着内容的变化而变化,这使得用户可以清晰地了解当前所处的层级。 在实际使用中,我们通常在`...

    UINavigationController 显示隐藏

    `UINavigationController`提供了在这些视图控制器之间进行导航的功能,比如通过手势或按钮来实现页面的“前进”和“后退”。 在标题"UINavigationController 显示隐藏"中,我们可以理解为讨论的是如何控制`...

    swift——自定义UITabBar,UITabBarController和UINavigationController

    自定义UITabBar,layoutSubviews重写UITabBarButton位置,重写则hitTest方法并监听按钮的点击 自定义的UITabBarController和UINavigationController

    uinavigationcontroller用法.rar

    这个"uinavigationcontroller用法.rar"文件很显然是为了详细解释如何在Objective-C的环境中利用uinavigationcontroller来构建和控制iOS应用的导航流程。下面我们将深入探讨uinavigationcontroller的相关知识点。 1....

    UINavigationController自定义

    总之,自定义`UINavigationController`的push动画是iOS开发中的一个高级技巧,它能帮助开发者为应用增添独特的视觉效果和交互体验。通过理解并实践上述步骤,开发者可以自由地塑造导航控制器的行为,从而提升应用的...

    UINavigationController

    1. `UINavigationController`在处理`pushViewController:animated:`和`popViewControllerAnimated:`时会影响到子控制器的生命周期方法,如`viewDidLoad`、`viewWillAppear`等。 2. 在`UINavigationController`中,...

    iOS 5 编程源码-UINavigationController

    导航控制器(UINavigationController)用来管理一系列显示层次型信息的场景。一般而言,逐步显示更详细的信息。 导航控制器 -- 用户在场景之间切换时,导航控制器依次将视图控制器压入(push)堆栈中,且当前场景的...

    iphone开发基础控件UINavigationController

    iphone中的基础控件UINavigationController,适合初学者,主要学习UINavigationController的基本属性和常用方法调用。 UINavigationController也是一种常用的容器,跟前边学过的tabbar差不多,在这个容器中可以添加...

    UInavigationController

    UInavigationController笔记

Global site tag (gtag.js) - Google Analytics