iOS开发———界面间传值

在开发中最最常用的无非就是界面间的互相传值了,今天为大家介绍最常用的三种传值方法: 协议 、 Block、 通知中心 !!!

首先创建第二页与第三页以及基础的button,label,textField等控件,这里不做过多介绍

iOS开发———界面间传值_第1张图片
![ ![2387D0B9-3EB8-4CFF-B47E-ABAEC9CA8205.png](http://upload-images.jianshu.io/upload_images/1714255-3bf4ddb0307b6c31.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)](http://upload-images.jianshu.io/upload_images/1714255-d34eacfef683c412.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

1.首先我们来看协议传值

(在第二页textField中输入文字,点击上一页按钮,将输入的文字传到第一页的textField上)
具体步骤:
1.在第二页的.h文件中声明协议方法

@protocol passValueDelegate 

- (void)passContent:(NSString *)content;

@end

2.在第二页的.h文件中声明代理人属性

 @property(nonatomic, assign)iddelegate;

3.在第二页.m文件的返回上一页按钮的点击方法里命令代理人执行协议方法
- (void)didClickedBackButton:(UIButton *)button
{

[self.delegate passContent:self.textField.text];

[self.navigationController popToRootViewControllerAnimated:YES];
}

4.在第一页的.m文件中签协议

@interface ViewController ()

5.在第一页.m文件进入下一页的按钮点击方法里设置代理人

- (void)didClickedButton:(UIButton *)button
{
SecondViewController *svc = [SecondViewController new];

svc.delegate = self;


 [self.navigationController pushViewController:svc animated:YES];
}

6.在第一页.m文件中执行协议方法
- (void)passContent:(NSString *)content
{
self.textField.text = content;
}

iOS开发———界面间传值_第2张图片
685DCB19-B86A-4ACD-A687-F397AF9C50AC.png

点击上一页按钮回到第一页时,相应的文字就传过来了

iOS开发———界面间传值_第3张图片
7D9070C1-EB38-422A-8B94-DED77F9799F1.png

Block传值

具体步骤 (熟练应用后1、2两步可以写在一起)
1.在第三页的.h文件中定义一个有参数无返回值的block

typedef void (^MyBox)(NSString *str);

2.在第三页的.h文件中声明一个block属性

@property(nonatomic, copy)MyBox box;

3.在第三页.m文件返回上一页的按钮点击方法中将要传的值进行装箱操作

- (void)didClickedButton:(UIButton *)button
{

self.box(self.textField.text);

[self.navigationController popViewControllerAnimated:YES];
}

4.在前一页的.m文件跳转到第三页的按钮点击方法中给block一个实现体

- (void)didClickedButton:(UIButton *)button
{
ThreeViewController *tvc = [ThreeViewController new];

tvc.box = ^(NSString *str){
   
    self.textField.text = str;
};

[self.navigationController pushViewController:tvc animated:YES];
}
iOS开发———界面间传值_第4张图片
F77AD8AE-EE05-4DD8-B2D6-B85CD7722951.png

点击按钮返回到第二页的时候


iOS开发———界面间传值_第5张图片
4E9A04EB-3F17-4112-BBE0-47E70CD20ACD.png

3.通知中心

新建工程,创建两个vc和相应的label


iOS开发———界面间传值_第6张图片
5F56D1B2-2489-4330-9CEA-4719495AE563.png

iOS开发———界面间传值_第7张图片
14E5E7CC-6027-440E-AD1F-7D937385BB71.png

1.在第二页的.m文件中创建通知中心

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{

//创建通知中心:
//通知中心发通知:
//参数1:通知中心的名字
//参数2:需要发送的内容,接收者会得到这个对象

[[NSNotificationCenter defaultCenter] postNotificationName:@"整" object:self.label.text];
[self dismissViewControllerAnimated:YES completion:^{
    nil;
}];

}

2.在第一页.m文件中为当前视图添加通知中心

 [[NSNotificationCenter defaultCenter] addObserver:self 
 selector:@selector(labelNotificationAction:) name:@"整" object:nil];

3.通知中心触发的方法

- (void)labelNotificationAction:(NSNotification *)labelNotification
{
self.label.text = labelNotification.object;
}

页面用模态方法跳转,也可在按钮点击方法里push
模态://模态过去时候的方法
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
SecondViewController *svc = [SecondViewController new];
[self presentViewController:svc animated:YES completion:^{
nil;
}];

}

在第二页点击屏幕时,模态到第一页并把label的文字传给第一页的label


iOS开发———界面间传值_第8张图片
91C1A189-E619-422C-8000-4077E19095EB.png

这三种方法在实际开发中很常用,希望大家熟练运用!!!

你可能感兴趣的:(iOS开发———界面间传值)