导航视图(一)

模态框视图

1、利用xib自定义一个新的ViewController ModalPageController;

2、在原有的视图控制器中触发跳转,代码如下:

ModalPageController *modelPageController = [[ModalPageController alloc]initWithNibName:@"ModalPageController" bundle:nil];

    modelPageController.modalTransitionStyle = UIModalTransitionStyleCoverVertical;

    [self presentViewController:modelPageController animated:YES completion:^{
        NSLog(@"modelPageController");
    }];

3、在ModalPageController中返回,代码如下:

[self dismissViewControllerAnimated:YES completion:^{
        NSLog(@"Close");
    }];

4、两个  ViewController之间的数据交换:

4.1 利用 NSNotificationCenter

1)在原有的ViewController总定义并设置回调,代码如下:

//viewDidLoad里
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(doComplete:) name:@"testComplete" object:nil];

//定义回调函数
-(void)doComplete:(NSNotification*)notification{
    NSDictionary *data = [notification userInfo];
    if(nil != data){
        NSString *input = [data objectForKey:@"InputText"];
        NSLog(@"%@", input);
    }
}

2)在ModalPageController的返回中,实现通知:

    [self dismissViewControllerAnimated:YES completion:^{
        NSLog(@"Close");

        NSString *input = self.inputText.text;

        NSDictionary *dic = [NSDictionary dictionaryWithObject:input forKey:@"InputText"];
        [[NSNotificationCenter defaultCenter]postNotificationName:@"testComplete" object:nil userInfo:dic];

    }];

4.2 利用协议

1)定义一个protocal

#import <Foundation/Foundation.h>

@protocol doBack <NSObject>

-(void)getInputText:(NSString *)input;

@end

2)定义原ViewController遵循并实现该协议,如下:

#import <UIKit/UIKit.h>
#import "doBack.h"

@interface ViewController : UIViewController<doBack>

@end

-(void)getInputText:(NSString *)input{
    NSLog(@"%@", input);
}

3)、在ModelPageController中定义代理,并在跳转前将该代理指向原ViewController

//ModalPageController.h中
@property(nonatomic,assign) NSObject<doBack> *delegate;

//
ModalPageController *modelPageController = [[ModalPageController alloc]initWithNibName:@"ModalPageController" bundle:nil];

    modelPageController.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
    modelPageController.delegate = self; //相当于取得原来ViewController的引用

    [self presentViewController:modelPageController animated:YES completion:^{
        NSLog(@"modelPageController");
    }];

4)、在ModalPageController需要的地方调用:

[self.delegate getInputText:@"hello Delegate"];
时间: 2024-10-29 19:09:56

导航视图(一)的相关文章

UI 07 _ 导航视图控制器 与 属性传值

首先, 先创建三个VC. 完成点击按钮, 进入下一页, 并能够返回. 要先把导航视图控制器创建出来. 在AppDelegate.m 文件中代码如下: #import "AppDelegate.h" #import "MainViewController.h" @interface AppDelegate () @end @implementation AppDelegate - (void)dealloc{ [_window release]; [super dea

导航视图控制器(总结)

导航视图控制器 : UINavigationController 继承于 UIViewController 注意:导航控制器高度是44,上面的状态栏高度是20,加在一起默认是64 效果图: 1.创建导航视图控制器 原代码: 在这之前要先建一个MainViewController的类 把MainViewController引入appDelegate.m的头文件 在appDelegate.m文件上创建导航视图控制器 // 先创建一个ViewController MainViewController

iOS UI07_导航视图控制器

// // MainViewController.m // UI07_导航视图控制器 // // Created by dllo on 15/8/6. // Copyright (c) 2015年 zhozhicheng. All rights reserved. // #import "MainViewController.h" #import "SecondViewController.h" @interface MainViewController () @p

导航视图(四)

导航视图 1.创建导航视图根视图: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[UIWindow alloc]initWithFrame:[[UIScreen mainScreen] bounds]]; ViewController* viewController = [[ViewCont

xcode6如何新建一个空项目+添加导航视图控制器

欢迎转载,请注明出处. 解说:使用xcode6的Empty项目模板创建出的项目啥都没有,及不方便.本编就先教大家如何创建一个包含有Target以及Appdelegate等目录的空项目以及添加导航视图控制器. 步骤1:打开xcode6,然后File - > New ->Project,打开后选择Single View Application模板,点击Next,输入项目名称,点击Next,选择保存位置,点击Create. 步骤2:选中项目名称,在配置栏中选择Info栏目,在Custom iOS T

拥抱Android Design Support Library新变化(导航视图、悬浮ActionBar..)

转载 请注明 明桑Android Android 5.0 Loollipop作为Android最重要的版本之一,为我们带来了全新的界面风格和设计语言.看起来很受欢迎,可它的普及似乎不那么顺利,刚过去不久的Google I/O 2015都已经推出了新的Android M预览版.即使是这样,原生版本的Android推广似乎一直没取得google预期的结果-不管怎样,作为开发者我们关心的无非是这个平台是否好用,能否开发出精致而又有趣的应用.好在Material Design我认为是成功的,官方在And

学习OpenSeadragon之四(导航视图)

OpenSeadragon介绍以及上手:学习OpenSeadragon之一 OpenSeadragon主要用于地图.医学图像等需要放大缩小分层显示的图像显示. 1.简单例子 导航视图就是在一个小框中显示整个地图的全貌,点击小框中的相应位置,整个图片显示的焦点就能定位到点击的相应位置,就像魔兽争霸.dota里的小地图那样,如下图右上角. OpenSeadragon已经为我们提供了方便调用的navigation接口,只需要在创建OpenSeadragon对象时声明: showNavigator: t

Eclipse rcp 开发 : 自定义导航视图CNF(3)为导航视图增加隐藏文件功能

org.eclipse.ui.navigator.navigatorContent 右键新增commonFilter id:  唯一 name :名称 如:*.xml resources description:描述, 如:Hides *.xml resources 在该属性下载增加属性:其中的value为通配xml  <filterExpression>             <and>                <adapt                     

导航视图栏左右键自定义

//创建按钮初始化 UIButton * leftButton=[[UIButtonalloc]initWithFrame:CGRectMake(0, 0, 60, 24)]; //添加返回方法    [leftButton addTarget:self action:@selector(backMainViewController) forControlEvents:UIControlEventTouchUpInside]; //设置字体颜色,状态    [leftButton setTitl

Snail—UI学习之导航视图控制器UINavigationController(系统)

背景 有一个根视图控制器 然后跳转到第一个界面  第一个界面可以返回到根视图 也可以跳转到第二个视图 第二个视图可以直接返回到根视图 新建三个ViewController    RootViewController FirstViewController SecondViewController 首先在AppDelegate.m中写入 #import "WJJAppDelegate.h" #import "WJJRootViewController.h" @impl