大家好,又见面了,我是全栈君。
之前在StackOverFlow上看到一篇讲传值(segue传值和delegate传值)的文章,感觉讲的非常清晰,就将delegate部分翻译了一下。有兴趣能够看看。
原文:
http://stackoverflow.com/questions/5210535/passing-data-between-view-controllers
译文:
为了从ViewControllerB往回传值到ViewControllerA,我们须要使用协议(Protocols)和代理(Delegates)。
为了实现这个过程,我们须要设置ViewControllerA为ViewControllerB的代理。
这样可以使ViewControllerB可以发送消息到ViewControllerA,相同也能使我们将数据回传。
ViewControllerA作为ViewControllerB的代理必需要遵从我们在ViewControllerB中定义的协议(Protocols),这可以告诉ViewControllerA有哪些方法是必需要实现的。
1.在ViewControllerB.h中,在#import和@interface之间(就是代码位置)。我们像以下这样定义我们的协议及协议方法:
@classViewControllerB;// Important @protocol ViewControllerBDelegate <NSObject> |
注:(NSString *)item是我们如今要回传的数据类型,也能够是其它类型,如字典、数组等
2.仍然是在ViewControllerB.h中。设置一个delegate属性,同一时候在ViewController.m中synthesize
@property (nonatomic, weak) id <ViewControllerBDelegate>delegate; |
在project中我是这么做的:
@propertyid<SelectPeopleVCDelegate>delegate;
3.
在
ViewControllerB
中,我们在将要从导航控制器中弹出该视图的时候向代理发送消息
(
消息中含有我们要传递的值
)
NSString *itemToPassBack = @“Pass this value back to ViewControllerA”; |
在实际project中我是这样完毕的:
– (void)viewDidDisappear:(BOOL)animated
{
[self.delegateaddItemViewController:selfdidFinishSelectPeople:dataSourceArray];
}
注:dataSourceArray是我的数据源,在一个公开变量,在前面的程序中完毕赋值。
4.
以上就是全部要在
ViewControllerB
中进行的操作。接下来就是
ViewControllerA
的操作。
首先我们要在ViewControllerA.h中导入ViewControllerB,并遵从它的协议:
#import “ViewControllerB.h” @interface ViewControllerA :UIViewController <ViewControllerBDelegate> |
5.在ViewControllerA.m中实现协议方法:
– (void)addItemViewController:(ViewControllerB *)controller didFinishEnteringItem:(NSString *)item |
6.最后,在我们将ViewControllerB压入堆栈之前,我们须要告诉ViewControllerB,ViewControllerA是它的代理(delegate):
ViewControllerB *viewControllerB = [[ViewControllerB alloc] initWithNib:@“ViewControllerB” bundle:nil]; |
在实际project中我是这样做的:
– (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
UIViewController * viewController = segue.destinationViewController;
BAGSelectPeopleVC * selectPeopleVC = (BAGSelectPeopleVC *)viewController;
selectPeopleVC.delegate =self;
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/116356.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...