iOS的5种传值

(-)属性传值

属性传值(场景)一般用于正向传值,即第一个界面传值给第二个界面

属性传值是这几大传值中最简单的传值方式只需要要记住两点:

1.要在接收值的界面(ViewController_2)中声明属性即文中: aString

2.要在跳转界面的同时将要传的赋值给下个控制器对象的属性即文中的这个操作: secondVc.aString =textF.text;

(二)Block传值

block传值(场景)一般用于逆向传值,即第二个界面传值给第一个界面

block对比属性传值,我们也需要记住两点:

1.要在第二个界面(SecondViewController.h)定义一个Block:

#import

typedef void (^PushBlock)(NSString*);

@interface SecondViewController : UIViewController

@property (nonatomic,strong)PushBlock pushValueString;

@endpushValueString;

2.要在第一个界面(FirstViewController.m)跳转第二个界面的方法中我们为block属性赋值完成block传值:

-(void)PushClick:(UIButton*)sender{SecondViewController * secondVc = [[SecondViewController alloc]initsecondVc.pushValueString = ^(NSString*str){ textF.text =str;} ;[self.navigationController pushViewController:secondVc animated:YES];}

Block传值完整代码如下:

FirstViewController

#import"FirstViewController.h"#import"SecondViewController.h"@interfaceFirstViewController(){UITextField* textF;}@end@implementationFirstViewController- (void)viewDidLoad {[superviewDidLoad];self.view.backgroundColor =[UIColorwhiteColor];[selfcreatUI];}-(void)creatUI{textF = [[UITextFieldalloc]init];textF.frame =CGRectMake(0,100,self.view.frame.size.width,30);textF.borderStyle =UITextBorderStyleRoundedRect;[self.view addSubview:textF];UIButton* PushBtn = [UIButtonbuttonWithType:(UIButtonTypeSystem)];PushBtn.frame =CGRectMake(0,140,self.view.frame.size.width,30);[PushBtn setTitle:@"Push"forState:(UIControlStateNormal)];[PushBtn addTarget:selfaction:@selector(PushClick:) forControlEvents:(UIControlEventTouchUpInside)];[self.view addSubview:PushBtn];}//跳转下个界面点击事件-(void)PushClick:(UIButton*)sender{SecondViewController * secondVc = [[SecondViewController alloc]init];//核心代码为block属性赋值secondVc.pushValueString = ^(NSString*str){    textF.text =str;} ;[self.navigationController pushViewController:secondVc animated:YES];}

SecondViewController

#importtypedefvoid(^PushBlock)(NSString*);@interfaceSecondViewController:UIViewController@property(nonatomic,strong)PushBlock pushValueString;@end#import"SecondViewController.h"@interfaceSecondViewController(){UITextField* textF;NSString* textFString;}@end@implementationSecondViewController- (void)viewDidLoad {[superviewDidLoad];self.view.backgroundColor = [UIColorwhiteColor];textF = [[UITextFieldalloc]init];textF.frame =CGRectMake(0,100,self.view.frame.size.width,30);textF.borderStyle =UITextBorderStyleRoundedRect;[self.view addSubview:textF];UIButton* Backbtn = [UIButtonbuttonWithType:(UIButtonTypeSystem)];Backbtn.frame  =CGRectMake(0,140,self.view.frame.size.width,30);[Backbtn addTarget:selfaction:@selector(backClick:) forControlEvents:(UIControlEventTouchUpInside)];[Backbtn setTitle:@"back"forState:(UIControlStateNormal)];[self.view addSubview:Backbtn];}//返回第一个界面并将值带入-(void)backClick:(UIButton*)sender{//核心代码_pushValueString(textF.text);[self.navigationController popViewControllerAnimated:YES];}

(三)代理传值

代理传值(场景)一般用于逆向传值,即第二个界面传值给第一个界面

FirstViewController页面push到SecondViewController页面,如果SecondViewController页面的信息想回传(回调)到FirstViewController页面,用代理传值,其中SecondViewController定义协议和声明代理,FirstViewController确认并实现代理,FirstViewController作为SecondViewController的代理

对于代理传值我们要记住如下记步操作:

第一步:首先,在SecondViewController.h中

(1).定义协议

(2).设置协议中的方法

(3).声明代理

然后,在SecondViewController.m中

(1).为其绑定相应方法

第二步:在FirstViewController.m中

(1).设置代理

(2).服从协议

完整代理传值代码如下:

SecondViewController

//首先在SecondViewController.h中创建协议方法#import@classSecondViewController;//定义协议@protocolPushValueDelegate@optional//设置协议中的方法-(void)viewController:(SecondViewController*)ViewController didPushVlaueWithInfo:(id)info;@end@interfaceSecondViewController:UIViewController//声明代理@property(nonatomic,assign)iddelegate;@end//然后,在SecondViewController.m中我们判定代理对象存在时,为其绑定相应方法#import"SecondViewController.h"@interfaceSecondViewController(){UITextField* textF;NSString* textFString;}@end@implementationSecondViewController-(void)viewWillDisappear:(BOOL)animated{//设置视图将要消失时.通过代理传值//判断代理是否存在,并且设置代理能够响应代理方法时,才执行代理方法if(self.delegate && [self.delegate respondsToSelector:@selector(viewController:didPushVlaueWithInfo:)]) {    [self.delegate viewController:selfdidPushVlaueWithInfo:textF.text];}}- (void)viewDidLoad {[superviewDidLoad];self.view.backgroundColor = [UIColorredColor];textF = [[UITextFieldalloc]init];textF.frame =CGRectMake(0,100,self.view.frame.size.width,30);textF.borderStyle =UITextBorderStyleRoundedRect;[self.view addSubview:textF];}

FirstViewController

#import"FirstViewController.h"#import"SecondViewController.h"//服从协议@interfaceFirstViewController(){UITextField* textF;}@end@implementationFirstViewController- (void)viewDidLoad {[superviewDidLoad];self.view.backgroundColor =[UIColorwhiteColor];[selfcreatUI];  }-(void)creatUI{textF = [[UITextFieldalloc]init];textF.frame =CGRectMake(0,100,self.view.frame.size.width,30);textF.borderStyle =UITextBorderStyleRoundedRect;[self.view addSubview:textF];UIButton* PushBtn = [UIButtonbuttonWithType:(UIButtonTypeSystem)];PushBtn.frame =CGRectMake(0,140,self.view.frame.size.width,30);[PushBtn setTitle:@"Push"forState:(UIControlStateNormal)];[PushBtn addTarget:selfaction:@selector(PushClick:) forControlEvents:(UIControlEventTouchUpInside)];[self.view addSubview:PushBtn];}-(void)PushClick:(UIButton*)sender{SecondViewController * secondVc = [[SecondViewController alloc]init];//设置代理secondVc.delegate =self;[self.navigationController pushViewController:secondVc animated:YES];}//实现代理方法-(void)viewController:(SecondViewController*)ViewController didPushVlaueWithInfo:(id)info{textF.text = info;}

(四)单例传值

单例可以保证某个类的实例在程序中是唯一的,便于进行资源和数据的共享。

单例的实现:

(1)新建一个普通的类,假设名字为People  在People.h中声明一个类方法,到时候使用该类方法(注意:一定是类方法,而不是实例方法)可以创建该类的唯一的一个实例

#import"Peopel.h"@implementationPeople{NSString*_eat; }@property(nonatomic,retain)NSString*eat;+(Peopel*)shareInstance;@end

(2)在Peopel .m中需要实现sharedInstance方法和你其他的业务逻辑

#import "Peopel.h"

//static声明一个类的静态实例;

static Peopelinstrance = nil;

@implementation Peopel

//使用类方法生成这个类唯一的实例

+(Peopel

)shareInstance{

if(instrance ==nil) {    instrance = [[superalloc]init];  }returninstrance;}@end

注意:一定要声明一个static的静态变量。以后创建类的唯一实例就使用sharedInstance方法,而不是使用alloc ,init.

下面为单例传值的简单使用(完整代码):

FirstViewController

#import"FirstViewController.h"#import"SecondViewController.h"#import"Peopel.h"@interfaceFirstViewController(){UITextField* textF;}@end@implementationFirstViewController- (void)viewDidLoad {[superviewDidLoad];self.view.backgroundColor =[UIColorwhiteColor];[selfcreatUI];}//接收由第二个界面pop回时textF里的数据值-(void)viewWillAppear:(BOOL)animated{[superviewWillAppear:animated];textF.text=[Peopel shareInstance].eat;}-(void)creatUI{textF = [[UITextFieldalloc]init];textF.frame =CGRectMake(0,100,self.view.frame.size.width,30);textF.borderStyle =UITextBorderStyleRoundedRect;[self.view addSubview:textF];UIButton* PushBtn = [UIButtonbuttonWithType:(UIButtonTypeSystem)];PushBtn.frame =CGRectMake(0,140,self.view.frame.size.width,30);[PushBtn setTitle:@"Push"forState:(UIControlStateNormal)];[PushBtn addTarget:selfaction:@selector(PushClick:) forControlEvents:(UIControlEventTouchUpInside)];[self.view addSubview:PushBtn];}-(void)PushClick:(UIButton*)sender{//跳转下个界面的同时为单例属性赋值[[Peopel shareInstance]setEat:textF.text];SecondViewController * secondVc = [[SecondViewController alloc]init];[self.navigationController pushViewController:secondVc animated:YES];    }

SecondViewController

#import"SecondViewController.h"#import"Peopel.h"@interfaceSecondViewController(){UITextField* textF;NSString* textFString;}@end@implementationSecondViewController-(void)viewWillDisappear:(BOOL)animated{}-(void)viewWillAppear:(BOOL)animated{[superviewWillAppear:animated];textF.text = [Peopel shareInstance].eat;}- (void)viewDidLoad {[superviewDidLoad];self.view.backgroundColor = [UIColorredColor];textF = [[UITextFieldalloc]init];textF.frame =CGRectMake(0,100,self.view.frame.size.width,30);textF.borderStyle =UITextBorderStyleRoundedRect;textF.text = [Peopel shareInstance].eat;[self.view addSubview:textF];//返回按钮UIButton* Backbtn = [UIButtonbuttonWithType:(UIButtonTypeSystem)];Backbtn.frame  =CGRectMake(0,140,self.view.frame.size.width,30);[Backbtn addTarget:selfaction:@selector(backClick:) forControlEvents:(UIControlEventTouchUpInside)];[Backbtn setTitle:@"back"forState:(UIControlStateNormal)];[self.view addSubview:Backbtn];}-(void)backClick:(UIButton*)sender{//返回时为单例属性赋值[Peopel shareInstance].eat = textF.text;[self.navigationController popViewControllerAnimated:YES];}

(五)通知传值

谁要监听值的变化,谁就注册通知  特别要注意,通知的接受者必须存在这一条件

1、注册通知

2、通知中心发送一条消息通知,其中name前后一定要一样

3、实现通知中心内部的方法,并实现传值

4、消息发送完,要移除掉。(页面将要消失的时候)

通知传值的简单代码如下:

代码为第二个界面传值到第一个界面的实现:

FirstViewController

#import"FirstViewController.h"#import"SecondViewController.h"@interfaceFirstViewController(){UITextField* textF;}@end@implementationFirstViewController- (void)viewDidLoad {[superviewDidLoad];self.view.backgroundColor =[UIColorwhiteColor];[selfcreatUI];/**

adObserver:注册监听者,一般都是控制器本身去监听一个通知

selector :当监听到通知的时候执行的方法

name :通知的名字,要和发送的通知的对象的名字一致

object: nil

*///注册监听者[[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(ChangeTextFText:) name:@"ChangeValue"object:nil];}-(void)ChangeTextFText:(NSNotification*)notification{NSDictionary* dic = notification.userInfo;NSLog(@"%@",dic);textF.text = dic[@"Value"];}-(void)creatUI{textF = [[UITextFieldalloc]init];textF.frame =CGRectMake(0,100,self.view.frame.size.width,30);textF.borderStyle =UITextBorderStyleRoundedRect;[self.view addSubview:textF];UIButton* PushBtn = [UIButtonbuttonWithType:(UIButtonTypeSystem)];PushBtn.frame =CGRectMake(0,140,self.view.frame.size.width,30);[PushBtn setTitle:@"Push"forState:(UIControlStateNormal)];[PushBtn addTarget:selfaction:@selector(PushClick:) forControlEvents:(UIControlEventTouchUpInside)];[self.view addSubview:PushBtn];}-(void)PushClick:(UIButton*)sender{SecondViewController * secondVc = [[SecondViewController alloc]init];[self.navigationController pushViewController:secondVc animated:YES];}//移除控制器上所有监听的通知-(void)dealloc{[[NSNotificationCenterdefaultCenter]removeObserver:self];}

SecondViewController

#import"SecondViewController.h"@interfaceSecondViewController(){UITextField* textF;}@end@implementationSecondViewController-(void)viewWillAppear:(BOOL)animated{[superviewWillAppear:animated];}- (void)viewDidLoad {[superviewDidLoad];self.view.backgroundColor = [UIColorredColor];textF = [[UITextFieldalloc]init];textF.frame =CGRectMake(0,100,self.view.frame.size.width,30);textF.borderStyle =UITextBorderStyleRoundedRect;[self.view addSubview:textF];UIButton* Backbtn = [UIButtonbuttonWithType:(UIButtonTypeSystem)];Backbtn.frame  =CGRectMake(0,140,self.view.frame.size.width,30);[Backbtn addTarget:selfaction:@selector(backClick:) forControlEvents:(UIControlEventTouchUpInside)];[Backbtn setTitle:@"back"forState:(UIControlStateNormal)];[self.view addSubview:Backbtn];}-(void)backClick:(UIButton*)sender{//发送通知[[NSNotificationCenterdefaultCenter]postNotificationName:@"ChangeValue"object:niluserInfo:@{@"Value":textF.text}];[self.navigationController popViewControllerAnimated:YES];}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,335评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,895评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,766评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,918评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,042评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,169评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,219评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,976评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,393评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,711评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,876评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,562评论 4 336
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,193评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,903评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,699评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,764评论 2 351

推荐阅读更多精彩内容