使用StoryBoard:用Segue传递数据
A---》B
想把数据 NSString A_data 从AController传到BController,则在BController中 @property 一个NSString data ,然后在AController中添加方法
- (void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
UIViewController *destination = segue.destinationViewController;
if ([destination respondsToSelector:@selector(setData:)]) {
[destination setValue:A_data forKey:@"data"];
}
}
作者:老Zhan
出处:http://www.cnblogs.com/mybkn/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。