我有三个 ViewController;A、B 和 C。
A介绍B,B介绍C。
如何将数据从 C 传递回 A?
我将 B 的代表设置为 A。
BViewController *bvc = [self.storyboard instantiateViewControllerWithIdentifier:@"B"];
bvc.delegate = self;
我可以以某种方式将 C 的代表设置为 A 吗?
喜欢:
CViewController *cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"C"];
cvc.delegate = (self's parent delegate)
?
还是我需要将 C 的代表设置为 B,然后设置为 A?