IOS四种反向传值的方法

方法一:使用target-action设计模式

代码如下:(由根视图推出子视图,再由子视图推出根视图,在推出根视图时,子视图传一个color的属性给根视图,用来修改根视图的背景颜色)

根视图控制器代码:

//.m文件
- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor redColor];
    
    [self createButton];
}

- (void)createButton
{
    UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];
    
    btn.frame = CGRectMake(10, 30, 300, 40);
    [btn setTitle:@"进入下一个视图控制器" forState:UIControlStateNormal];
    btn.layer.cornerRadius = 5;
    
    btn.backgroundColor = [UIColor blackColor];
    
    [btn addTarget:self action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];
    
    [self.view addSubview:btn];
}

- (void)btnClick
{
    Sub1ViewController * sub1 = [[Sub1ViewController alloc]init];
    
    sub1.view.backgroundColor = [UIColor blueColor];
    
    sub1.target = self;
    
    sub1.action = @selector(changeColor:);
    
    [self presentViewController:sub1 animated:YES completion:nil];
}

- (void)changeColor:(UIColor *)color
{
    self.view.backgroundColor = color;
}

子视图代码:

//.h文件

@interface Sub1ViewController : UIViewController
@property (assign,readwrite,nonatomic)id target;
@property (assign,readwrite,nonatomic)SEL action;
@end

//.m文件
- (void)viewDidLoad
{
    [super viewDidLoad];
    
    [self createPopToRootViewBtn];
}

- (void)createPopToRootViewBtn
{
    UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];
    
    btn.frame = CGRectMake(10, 30, 300, 40);
    [btn setTitle:@"进入根视图控制器" forState:UIControlStateNormal];
    btn.layer.cornerRadius = 5;
    
    btn.backgroundColor = [UIColor blackColor];
    
    [btn addTarget:self action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];
    
    [self.view addSubview:btn];
}

- (void)btnClick
{
    if ([_target respondsToSelector:_action])
    {
        [_target performSelector:_action withObject:[UIColor orangeColor]];
    }
    [self dismissViewControllerAnimated:YES completion:nil];
}

方法二:通知

//.m根视图
- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor redColor];
    
    [self createButton];
    
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeColor:) name:@"ChangeColor" object:nil];
}

- (void)createButton
{
    UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];
    
    btn.frame = CGRectMake(10, 30, 300, 40);
    [btn setTitle:@"进入下一个视图控制器" forState:UIControlStateNormal];
    btn.layer.cornerRadius = 5;
    
    btn.backgroundColor = [UIColor blackColor];
    
    [btn addTarget:self action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];
    
    [self.view addSubview:btn];
}

- (void)btnClick
{
    Sub1ViewController * sub1 = [[Sub1ViewController alloc]init];
    
    sub1.view.backgroundColor = [UIColor blueColor];
    
    [self presentViewController:sub1 animated:YES completion:nil];
}

- (void)changeColor:(NSNotification *)nofi
{
    self.view.backgroundColor = [nofi.userInfo objectForKey:@"color"];
}

子视图代码

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    [self createPopToRootViewBtn];
}

- (void)createPopToRootViewBtn
{
    UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];
    
    btn.frame = CGRectMake(10, 30, 300, 40);
    [btn setTitle:@"进入根视图控制器" forState:UIControlStateNormal];
    btn.layer.cornerRadius = 5;
    
    btn.backgroundColor = [UIColor blackColor];
    
    [[NSNotificationCenter defaultCenter]postNotificationName:@"ChangeColor" object:self userInfo:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor orangeColor],@"color", nil]];
    
    [btn addTarget:self action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];
    
    [self.view addSubview:btn];
    
    
}

- (void)btnClick
{
    [self dismissViewControllerAnimated:YES completion:nil];
}

方法三:代码块

根视图代码:

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor redColor];
    
    [self createButton];
}

- (void)createButton
{
    UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];
    
    btn.frame = CGRectMake(10, 30, 300, 40);
    [btn setTitle:@"进入下一个视图控制器" forState:UIControlStateNormal];
    btn.layer.cornerRadius = 5;
    
    btn.backgroundColor = [UIColor blackColor];
    
    [btn addTarget:self action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];
    
    [self.view addSubview:btn];
}

- (void)btnClick
{
    Sub1ViewController * sub1 = [[Sub1ViewController alloc]init];
    
    sub1.view.backgroundColor = [UIColor blueColor];
    
    sub1.MyBlock = ^(UIColor * color)
    {
        self.view.backgroundColor = color;
    };
    
    [self presentViewController:sub1 animated:YES completion:nil];
}

子视图代码

//.h文件
@interface Sub1ViewController : UIViewController
@property (copy,nonatomic,readwrite)void (^MyBlock)(UIColor * color);
@end
//.m文件
- (void)viewDidLoad
{
    [super viewDidLoad];
    
    [self createPopToRootViewBtn];
}

- (void)createPopToRootViewBtn
{
    UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];
    
    btn.frame = CGRectMake(10, 30, 300, 40);
    [btn setTitle:@"进入根视图控制器" forState:UIControlStateNormal];
    btn.layer.cornerRadius = 5;
    
    btn.backgroundColor = [UIColor blackColor];
    
    [btn addTarget:self action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];
    
    [self.view addSubview:btn];
    
    
}

- (void)btnClick
{
    _MyBlock([UIColor orangeColor]);
    [self dismissViewControllerAnimated:YES completion:nil];
}

方法四:代理-协议

根视图代码

//.h
#import <UIKit/UIKit.h>
#import "Sub1ViewController.h"
@interface ViewController : UIViewController<Sub1ViewControllerDelete>

@end
//.m
- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor redColor];
    
    [self createButton];
}

- (void)createButton
{
    UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];
    
    btn.frame = CGRectMake(10, 30, 300, 40);
    [btn setTitle:@"进入下一个视图控制器" forState:UIControlStateNormal];
    btn.layer.cornerRadius = 5;
    
    btn.backgroundColor = [UIColor blackColor];
    
    [btn addTarget:self action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];
    
    [self.view addSubview:btn];
}

- (void)btnClick
{
    Sub1ViewController * sub1 = [[Sub1ViewController alloc]init];
    
    sub1.view.backgroundColor = [UIColor blueColor];
    sub1.delegate = self;
    [self presentViewController:sub1 animated:YES completion:nil];
}

- (void)changeColor:(UIColor *)color
{
    self.view.backgroundColor = color;
}

子视图控制器

//.h文件
#import <UIKit/UIKit.h>

@protocol Sub1ViewControllerDelete <NSObject>
- (void)changeColor:(UIColor *)color;
@end

@interface Sub1ViewController : UIViewController
@property (assign,nonatomic,readwrite)id <Sub1ViewControllerDelete>delegate;
@end
//.m文件
- (void)viewDidLoad
{
    [super viewDidLoad];
    
    [self createPopToRootViewBtn];
}

- (void)createPopToRootViewBtn
{
    UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];
    
    btn.frame = CGRectMake(10, 30, 300, 40);
    [btn setTitle:@"进入根视图控制器" forState:UIControlStateNormal];
    btn.layer.cornerRadius = 5;
    
    btn.backgroundColor = [UIColor blackColor];
    
    [btn addTarget:self action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];
    
    [self.view addSubview:btn];
    
    
}

- (void)btnClick
{
    [_delegate changeColor:[UIColor orangeColor]];
    
    [self dismissViewControllerAnimated:YES completion:nil];
}
时间: 2024-10-13 11:09:33

IOS四种反向传值的方法的相关文章

四种变量交换swap方法

1.void swap(int &x, int &y){ int temp=x; x=y; y=temp; } 2.void swap(int &x, int &y){ x=x+y; y=x-y; x=x-y; } 3.void swap(int &x, int &y){ x=x-y; y=x+y; x=y-x; } 4.void swap(int &x, int &y){ x=x^y; y=x^y; x=x^y; } 四种变量交换swap方

javascript四种类型识别的方法

× 目录 [1]typeof [2]instanceof [3]constructor[4]toString 前面的话 javascript有复杂的类型系统,类型识别则是基本的功能.javascript总共提供了四种类型识别的方法,本文将对这四种方法进行详细说明 typeof运算符 typeof是一元运算符,放在单个操作数的前面,返回值为表示操作数类型的首字母小写的字符串 [注意]typeof运算符后面带不带圆括号都可以 console.log(typeof 'a');//'string' co

JSP中四种传递参数的方法

jsp中四种传递参数的方法,我觉得总结一下,挺好的,以备后用! 1.form表单 2.request.setAttribute();和request.getAttribute(); 3.超链接:<a herf="index.jsp"?a=a&b=b&c=c>name</a> 1.form表单 form.jsp: <%@page contentType="text/html; charset=GB2312"%> &l

安卓企业开发(三) activity的四种经典传值方法

开发中遇到多个activity的传值问题 相邻两个之间的传值 或者多个三个以上之间的传值问题 但是很多同学这方面经验还是不足,说下常用的开发场景 1 一般的注册或者添加某项信息界面就会遇activity传值问题 2  比如我在一个界面提交新息  需要打开一个新的界面选择里面的信息回到当前activty的时候 现在说下比较经典的四种比较经典的传值方法 一 如果是两个相邻activity之间的传值: 可以用Intent传值 对象和单个属性都可以都可以 Intent intent =new Inten

iOS反向传值--Block方法

RootViewController代码如下: #import "RootViewController.h" #import "MyControl.h" #import "SecondViewController.h" #define kDebugPrint NSLog(@"%s",__func__) @interface RootViewController () {     UILabel *_label; } @end

属性传值,协议传值,block传值,单例传值四种界面传值方式

一.属性传值 对于属性传值而言,相对于其它的三种 方法来说,是最基础,最简单的一种 方法,但,属性传值 有很大的局限性,因为是适用于第一个界面向第二个界面传 值,第二个向第三个界面传值等等.N界面向N + 1界面传值.而在此基础上,必须知道跳转界面的明确位置及所要传的值的具体类型.在第二个界面中声明所要传值 类型的属性. @interface SecondViewController : UIViewController //声明一个字符串属性来保存第一个界面传过来的字符串内容 @propert

四种表单验证方法的分析和比较

前言 任何可以交互的站点都有输入表单,只要有可能,就应该对用户输入的数据进行验证.无论服务器后端是什么样的系统,都不愿意把时间浪费在一些无效的信息上,必须对表单数据进行校验,若有不符合规定的表单输入,应及时返回并给出相应的提示信息.本文将列举四种不同原理的表单验证方法,并给出各方法在 PHP 服务器上的实现. 回页首 浏览器端验证 传统上,表单数据一般都通过浏览器端的 Javascript 验证.浏览器端的验证速度快,若有不符合要求的输入,响应信息快速的返回给用户.由于验证数据不需要提交给服务器

iOS Block界面反向传值

在上篇博客 <iOS Block简介> 中,侧重解析了 iOS Block的概念等,本文将侧重于它们在开发中的应用. Block是iOS4.0+ 和Mac OS X 10.6+ 引进的对C语言的扩展,用来实现匿名函数的特性.用维基百科的话来说,Block是Apple Inc.为C.C++以及Objective-C添加的特性,使得这些语言可以用类lambda表达式的语法来创建闭包.关于闭包,一句话解释简洁明了:闭包就是能够读取其它函数内部变量的函数. 在iOS开发中,Block有很多方面的用途,

Android点击Button按钮的四种事件监听方法总结

首先我们在activity_main.xml里面先定义一个Button空间 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="m