使用Block在A、B页面实现传值
Block使用起来很方便,不过这里没有将其作为方法的一个参数,而是简单的作为一个属性来使用。
思路如下:
在B页面
1.定义一个Block别名
//别名(申明) 类型 ----> void (^) (NSString *text)typedef
void(^ChangeTextBlock) (NSString *text);
2.定义一个block
@property (nonatomic, copy) ChangeTextBlock block;
3.在B页面的Button事件响应方法里面修改值
//修改值 -----> 调用block来修改值
if (self.block != nil) {
self.block(textField.text);
}
4.将值传到A页面
//1. 实现block,使用__block的原因:是防止内存的泄露__block
RootViewController *rootVC = self;
//2. block的初始化
_modalViewController.block = ^(NSString *text) {
//如果不用__block的对象,那么这里会提示一个关于内存的警告
UILabel *label = (UILabel *) [rootVC.view viewWithTag:1000];
label.text = text;
};
完整代码:
A页面
.h文件
#import <UIKit/UIKit.h>
@interface RootViewController : UIViewController
@end
.m文件
#import "RootViewController.h"
#import "ModalViewController.h"
@interface RootViewController () {
ModalViewController *_modalViewController;
}
@end
@implementation RootViewController
- (void)viewDidLoad {
[super viewDidLoad];
//1) 设置背景颜色
self.view.backgroundColor = [UIColor cyanColor];
//2) 设置一个Label
//a) 创建一个Label
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(25, 100, 270, 30)];
//b) 设置该label的tag label.tag = 1000;
//c) 设置label的内容
label.text = @"Block的传值";
//d) 设置背景颜色
label.backgroundColor = [UIColor orangeColor];
//e) 设置字体颜色
label.textColor = [UIColor whiteColor];
//f) 设置居中方式
label.textAlignment = NSTextAlignmentCenter;
//g) 添加label
[self.view addSubview:label];
//3) 设置跳转你的button
//a) 创建button
UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
//b) 设置其frame
button.frame = CGRectMake(0, 0, 200, 30);
//c) 设置其在屏幕的中心
button.center = self.view.center;
//d) 设置背景颜色
button.backgroundColor = [UIColor lightGrayColor];
//e) 设置显示的内容
[button setTitle:@"跳转" forState:UIControlStateNormal];
//f) 设置相应事件
[button addTarget:self action:@selector(buttonAction:) forControlEvents:UIControlEventTouchUpInside];
//g) 添加到页面上
[self.view addSubview:button];
//4) 初始化模态视图
_modalViewController = [[ModalViewController alloc] init];
}
#pragma mark - 点击的按键响应
- (void) buttonAction: (UIButton *) button {
//1. 实现block,使用__block的原因:是防止内存的泄露 __block
RootViewController *rootVC = self;
//2. block的初始化
_modalViewController.block = ^(NSString *text) {
//如果不用__block的对象,那么这里会提示一个警告 ------> 内存的
UILabel *label = (UILabel *) [rootVC.view viewWithTag:1000];
label.text = text;
};
//3. 弹窗模式
_modalViewController.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
//4. 模态视图
[self presentViewController:_modalViewController animated:YES completion:nil];
}
@end
B页面
.h文件
#import <UIKit/UIKit.h>
//这里要定义一个block的别名(申明) 类型 ----> void (^) (NSString *text)
typedef void(^ChangeTextBlock) (NSString *text);
@interface ModalViewController : UIViewController
//定义一个block
@property (nonatomic, copy) ChangeTextBlock block;
@end
.m文件
#import "ModalViewController.h"
@interface ModalViewController ()
@end
@implementation ModalViewController
- (void)viewDidLoad {
[super viewDidLoad];
//1) 设置背景颜色
self.view.backgroundColor = [UIColor orangeColor];
//2) 设置一个TextField
//a) 创建一个TextField
UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(25, 100, 270, 30)];
//b) 设置tag
textField.tag = 2000;
//c) 设置显示的效果
textField.borderStyle = UITextBorderStyleRoundedRect;
//d) 显示提示语
textField.placeholder = @"请输入一段文字...";
//e) 添加到self.view上
[self.view addSubview:textField];
//3) 设置跳转你的button
//a) 创建button
UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
//b) 设置其frame
button.frame = CGRectMake(0, 0, 200, 30);
//c) 设置其在屏幕的中心
button.center = self.view.center;
//d) 设置背景颜色
button.backgroundColor = [UIColor lightGrayColor];
//e) 设置显示的内容
[button setTitle:@"返 回" forState:UIControlStateNormal];
//f) 设置相应事件
[button addTarget:self action:@selector(backAction:) forControlEvents:UIControlEventTouchUpInside];
//g) 添加到页面上
[self.view addSubview:button];
}
- (void) backAction: (UIButton *) button {
//1) 取值
UITextField *textField = (UITextField *)[self.view viewWithTag:2000];
//2) 修改值 -----》 调用block来修改值
if (self.block != nil) {
self.block(textField.text);
}
//3) 关闭模态视图
[self dismissViewControllerAnimated:YES completion:nil];
}
@end