标签:
之前在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有哪些方法是必需要实现的。
@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;
}
标签:
原文地址:http://www.cnblogs.com/yxwkf/p/5123438.html