iOS页面间逆传值

作者: 帅只是表象 | 来源:发表于2016-04-12 18:14 被阅读706次
页面间传值有两种:
  • 正向传值(利用属性传值就可以了,很简单)
  • 逆向传值(有3种常用的方法)
  • 代理传值
  • block传值
  • 通知中心传值
我这篇文章分享的是逆向传值的3种方式(以下内容请配合我写的简单的Demo看看点击下载)
1.代理传值(相对block,代理更适用于需要实现多个方法)
  • 代理传值第一步: NextViewcontroller中声明协议(也可以创建一个协议类)
#import <UIKit/UIKit.h>
@protocol ChangeName  //协议
-(void)changeName:(NSString*)string;
@end
@interface NextViewController : UIViewController
  • 第二步: 声明代理ARC(内存自动释放机制), 使用weak修饰; MRC环境下使用assign修饰
@interface NextViewController : UIViewController
@property (nonatomic,weak)id<ChangeName>delegate; //代理
  • 第三步: 在按钮的触发方法中调用代理方法
//代理
-(IBAction)delegateAction:(UIButton *)sender {
    
    if (![self.nameTextField.text isEqualToString:@""]) {
        [self.delegate changeName:self.nameTextField.text];//写在前面或写在dismiss的Block中都可以
    }
    [self dismissViewControllerAnimated:YES completion:^{
        
    }];
}
  • 第四步:在ViewController中导入NextViewController头文件,并遵守协议
#import "NextViewController.h"//因为我把协议写在了NextViewController中所以只要倒入这个头文件就行了
@interface ViewController ()<ChangeName>
  • 第五步:设置代理(因为我用的是storyboard所以在这个跳转的方法中设置代理)我以后会写一篇关于storyboard用法的文章来说说注意事项
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    //让NextViewController的实例是segue的目标控制器
    NextViewController* vc=segue.destinationViewController;//segue是storyboard中的拖线
    vc.delegate=self;
}
  • 第六步:在ViewController的.m文件中实现协议方法
//协议要实现的方法
-(void)changeName:(NSString *)string
{
    self.NameLabel.text=string;
}
2.block传值

block传值有4种写法,在这里我提供一个简单的写法,可以在我的链接中下载简单的Demo看看,里面有2种方法

  • 第一步:在NextViewController中(.h中 以保证随时可以访问)声明一个Block属性用copy修饰
@property (nonatomic,copy) void (^change)(NSString* stringName);//block 写法1
  • 第二步:在NextViewController.m文件中的按钮触发方法中调用
-(IBAction)blockAction:(UIButton *)sender {
//block 方法1
    self.change(self.nameTextField.text); //写在前面或写在dismiss的Block中都可以
    [self dismissViewControllerAnimated:YES completion:^{

    }];
}
  • 第三步:在ViewController.m中导入头文件并实现block
#import "NextViewController.h"
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
//让NextViewController的实例是segue的目标控制器
    NextViewController* vc=segue.destinationViewController;//segue是storyboard中的拖线
//block 写法1
    __weak __typeof(self) weakSelf = self; //防止循环引用
    vc.change=^(NSString* stringName){
        weakSelf.NameLabel.text=stringName;
    };
}
3.通知中心传值

这个传值方式我比较喜欢,因为它写起来比较简单,用起来比较方便通知中心NSNotificationCenter是面向程序全局发送消息,在哪都可以接到,但请注意消息的命名(不要重名)

  • 第一步:在ViewController中添加观察者
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
//通知中心添加观察者
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeLabelText:) name:@"改变名称" object:nil];
}
  • 第二步:在ViewController.m中实现观察者接到消息之后执行的方法
-(void)changeLabelText:(NSNotification*)sender
{
    self.NameLabel.text=sender.userInfo[@"名字"];
}
  • 第三步:在ViewController.m中要移除观察者
//移除通知中心
-(void)dealloc
{
    [[NSNotificationCenter defaultCenter]removeObserver:self];
}
  • 第四步:在NextViewController.m中发送消息
//通知中心发送通知
-(IBAction)NSNotificationAction:(UIButton *)sender {
    
    NSDictionary* dic=@{@"名字":self.nameTextField.text};
    [[NSNotificationCenter defaultCenter] postNotificationName:@"改变名称" object:nil userInfo:dic];
    [self dismissViewControllerAnimated:YES completion:^{
        
    }];
}

注:相关内容我会继续更新。如果想找一些iOS方面的代码可以关注我的简书,我会持续更新,大家一起探讨探讨
在此谢谢大家阅读😊

相关文章

网友评论

    本文标题:iOS页面间逆传值

    本文链接:https://www.haomeiwen.com/subject/hucwlttx.html