gpt4 book ai didi

iphone - 访问模态视图 Controller 父级

转载 作者:IT王子 更新时间:2023-10-29 07:54:49 25 4
gpt4 key购买 nike

我正在以模态方式呈现一个 ViewController。如何访问父 View Controller ?

我的架构是TabBarController=>VC1=>VC2=>VC3=>MVC1,我想从MVC1到达VC3。

在 VC3 中,我有这样的代码:

- (void) editAd{
AskPasswordViewController *modalViewController = [[AskPasswordViewController alloc] initWithNibName:@"AskPasswordView" bundle:nil];

NSLog(@"modalparent class=%@", [[modalViewController parentViewController] class]);

[self presentModalViewController:modalViewController animated:YES];
[modalViewController release];
}

我在 MVC1 中试过这个:

- (void) sendRequest {
NSLog(@"classe : %@",[[self parentViewController] class] );
}

但它返回我的 TabBarViewController...

最佳答案

您可以通过调用访问父级:

self.presentingViewController

根据苹果文档:

The view controller that presented this view controller (or its farthest ancestor.)

关于iphone - 访问模态视图 Controller 父级,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6735170/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com