iOS中的传值方式

在日常开发过程中,我们经常会遇到值传递。这里,介绍几种iOS开发中常见的传值方式。

1.属性传值

属性传值是iOS中最为常见的正向传值方式,假定我们现在有这样一个需求,在A控制器点击按钮,将按钮的标题显示在B控制器的label上。首先,我们创建两个控制器CCFirstViewController和CCSecondViewController,在CCSecondViewController.h中声明一个属性

@interface CCSecondViewController : UIViewController
@property (nonatomic, strong) NSString *buttonTitleString;
@end
@interface CCSecondViewController
 
@end

@implementation CCSecondViewController
- (void)viewDidLoad {
    
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor whiteColor];
    
    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 30)];
    
    label.center = self.view.center;
    
    label.text = self.buttonTitleString;
    
    [self.view addSubview:label];
}

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    
    [self dismissViewControllerAnimated:YES completion:nil];
    
}
@end

现在,在第二个控制器中已经有了接收按钮标题的属性,接下来,在第一个控制器中添加一个按钮,点击按钮让第一个控制器将按钮标题传递给第二个控制器。

@interface CCFirstViewController ()

@end

@implementation CCFirstViewController

- (void)viewDidLoad {
    
    [super viewDidLoad];
    
    UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
    
    button.frame = CGRectMake(0, 0, 100, 30);
    
    button.center = self.view.center;
    
    [button setTitle:@"浪漫恋星空" forState:UIControlStateNormal];
    
    [button addTarget:self action:@selector(handleButtonEvent:) forControlEvents:UIControlEventTouchDragInside];
    
    [self.view addSubview:button];
}

- (void)handleButtonEvent:(UIButton *)sender {
    
    CCSecondViewController *vc  = [[CCSecondViewController alloc] init];
    
    vc.buttonTitleString = sender.currentTitle;
    
    [self presentViewController:vc animated:YES completion:nil];
}

@end

运行程序,点击第一个控制器的按钮跳转到第二个控制器,我们会发现第二个控制器的label已经有值了。这就是属性传值的简单应用。

属性传值的基本步骤就是在需要接收值的控制器公开一个属性,在前一个控制器跳转的事件中初始化接收值的控制器,将需要传递的值赋值给接收值的控制器公开的属性,接下来做控制器的跳转。

2.代理传值

在日常的开发中,我们遇到的值传递不可能只是简单的正向传递,很多时候我们也需要将第二个控制器中的值传递给前一个控制器,这就是常见的反向传值。属性传值已经不能满足我们的需求了,就需要用到第二种常见的传值方式,代理传值。同样假定一个需求,在B控制器点击按钮,将按钮的标题显示在A控制器的label上。还是用上述两个创建好的控制器完成。
简单的将第一个控制器中的label和第二个控制器中的button创建好,为了方便,这里将第一个控制器的跳转事件直接写到touch事件里面(感觉有哪里没对)。接下来,我们需要做的是点击第二个控制器中的按钮,将按钮的标题传回第一个控制器。
首先,在需要传值出去的控制器,也就是我们的第二个控制器的.h文件中,声明一个协议,并且声明一个传值需要的协议方法。

// 声明协议以及传值的方法
@protocol CCSecondViewControllerDelegate 

- (void)sendButtonTitleToFirst:(NSString *)string;

@end

接下来,声明一个代理属性。

@interface CCSecondViewController : UIViewController
// 声明代理属性(这里要用weak!!!最开始使用代理,都会踩的坑。这里先不做过多解释。)
@property (nonatomic, weak) id delegate;

@end

然后呢,我们在第二个控制器的按钮点击事件中,让代理响应传值的方法。

- (void)handleButtonEvent:(UIButton *)sender {
    
    // 判断代理是否存在,并且已经响应了传值方法
    if (self.delegate && [self.delegate respondsToSelector:@selector(sendButtonTitleToFirst:)]) {
        // 传值
        [self.delegate sendButtonTitleToFirst:sender.currentTitle];
    }
    
    [self dismissViewControllerAnimated:YES completion:nil];
}

需要在第二个控制器中做的事已经做完了。去到第一个控制器,在第二个控制器初始化完成的地方,将第二个控制器的代理设置为第一个控制器,遵守代理,然后去实现传值方法。

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    
    CCSecondViewController *vc  = [[CCSecondViewController alloc] init];
    // 设置代理属性
    vc.delegate = self;
    
    [self presentViewController:vc animated:YES completion:nil];
}

// 遵守代理
@interface CCFirstViewController ()

// 实现传值的方法
- (void)sendButtonTitleToFirst:(NSString *)string {
    
    self.label.text = string;
}

然后呢,好像就没有然后了。。。
整理一下现在两个控制器中的代码

#import "CCFirstViewController.h"
#import "CCSecondViewController.h"

@interface CCFirstViewController ()

@property (nonatomic, strong) UILabel *label;

@end

@implementation CCFirstViewController

- (void)viewDidLoad {
    
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor whiteColor];
    
    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 30)];
    
    label.center = self.view.center;
    
    [self.view addSubview:label];
    
    self.label = label;
}

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    
    CCSecondViewController *vc  = [[CCSecondViewController alloc] init];
    
    vc.delegate = self;
    
    [self presentViewController:vc animated:YES completion:nil];
}

- (void)sendButtonTitleToFirst:(NSString *)string {
    
    self.label.text = string;
}

@end

第二个控制器的.h文件

@protocol CCSecondViewControllerDelegate 

- (void)sendButtonTitleToFirst:(NSString *)string;

@end

@interface CCSecondViewController : UIViewController

@property (nonatomic, weak) id delegate;

@end

.m文件

@interface CCSecondViewController ()


@end

@implementation CCSecondViewController

- (void)viewDidLoad {
    
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor whiteColor];
    
    UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
    
    button.frame = CGRectMake(0, 0, 100, 30);
    
    button.center = self.view.center;
    
    [button setTitle:@"浪漫恋星空" forState:UIControlStateNormal];
    
    [button addTarget:self action:@selector(handleButtonEvent:) forControlEvents:UIControlEventTouchDragInside];
    
    [self.view addSubview:button];
}

- (void)handleButtonEvent:(UIButton *)sender {
    
    if (self.delegate && [self.delegate respondsToSelector:@selector(sendButtonTitleToFirst:)]) {
        [self.delegate sendButtonTitleToFirst:sender.currentTitle];
    }
    
    [self dismissViewControllerAnimated:YES completion:nil];
}

@end

代理传值的基本使用就是这样了。总结一下基本的步骤。

  • 1.拟定一个代理协议,声明协议方法。
  • 2.声明代理属性。
  • 3.使用代理。
  • 4.设置代理属性。
  • 5.遵守代理,实现代理方法。

3.Block传值

反向传值除了上面说到的代理传值,还有一种常见的传值方式,就是Block传值。上面的反向传值需求再用Block的方式实现一遍。

首先,在第二个控制器中声明一个Block,通常情况下,为了代码的可读性,我们会为Block取一个别名。

typedef void(^SendButtonTitleToFirsrBlock)(NSString *string);

上面这一行代码呢,就是给我们的Block取了一个我们想要的名字。结构大致是这样的 。

typedef 返回值类型(^我们想取的Block的别名)(参数);

在第二个控制器中声明一个Block属性

// 用我们自定义的Bolck声明一个block属性
@property (nonatomic, copy) SendButtonTitleToFirsrBlock block;

在按钮的点击事件中使用Block;

- (void)handleButtonEvent:(UIButton *)sender {
    
    if (self.block) {
        
        self.block(sender.currentTitle);
    }
    
    [self dismissViewControllerAnimated:YES completion:nil];
}

接下来只需要在第一个控制器中初始化第二个控制器完成的地方,使用Block。

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    
    CCSecondViewController *vc  = [[CCSecondViewController alloc] init];
    
    vc.block = ^(NSString *string) {
        
        self.label.text = string;
    };
    
    [self presentViewController:vc animated:YES completion:nil];
}

做完这些,把工程common + R 一下,我们就可以看到和代理实现了一模一样的需求。看上去也更简单。

综上,这些就是在日常开发中常用的传值方式。当然,代理和Block能做的事多了,这里只是介绍它们传值的简单使用。如果你在阅读过程中发现有不足和错误,请留言指出。谢谢大家。如果你觉得这篇文章能给你带来一点点收获,不胜荣幸!

你可能感兴趣的:(iOS中的传值方式)