如何将数据从父视图控制器传递到子视图控制器?
我尝试与代表一起做这件事。但我觉得这不是一个选择吗?
答案 0 :(得分:13)
如果您从父视图传递到子视图控制器,则只需从父视图设置childViewController的属性。
customChildViewController.someRandomProperty = @"some random value";
[self presentViewController:customChildViewController animated:YES completion:nil];
或者,您可以设置代理
步骤1:在ChildViewController.h文件中设置以上接口的协议
@protocol ChildViewControllerDelegate
- (NSDictionary *) giveMeData;
@end
@interface .....
第2步:在ChildViewController.h接口中创建委托属性
@property (strong, nonatomic) id<ChildViewControllerDelegate>delegate
步骤3:在ParentViewController.h中声明委托协议
@interface ParentViewController : UIViewController <ChildViewControllerDelegate>
步骤4:在ParentViewController.m中添加此方法:
- (NSDictionary *) giveMeData {
NSMutableDictionary * dataToReturn = [[NSMutableDictionary alloc]init];
dataToReturn[@"some"] = @"random";
dataToReturn[@"data"] = @"here";
return dataToReturn;
}
步骤5:在启动childViewController声明委托属性之前。
childViewController.delegate = self;
[self presentViewController:childViewController animated:YES completion:nil];
步骤6:在子视图控制器中,只要您想要数据添加此
NSMutableDictionary * dataFromParent = [self.delegate giveMeData];
parentVC将运行'giveMeData'并返回NSMutableDictionary(根据您想要的任何数据进行调整)
答案 1 :(得分:2)
您可以通过以下方式访问子视图控制器:
NSArray *children = self.childViewControllers;