gpt4 book ai didi

ios - 连续调用 UIViewController 的 presentViewController 方法

转载 作者:可可西里 更新时间:2023-11-01 03:33:57 24 4
gpt4 key购买 nike

我最近在我的 iOS 应用程序中遇到了一个令人毛骨悚然的情况,我试图从我的窗口的 rootViewController 中连续关闭一个呈现的 UIViewController,使用:

[rootViewController dismissViewControllerAnimated:YES completion:NULL]

并在不久之后展示另一个(顺便说一下,以另一种方法),其中:

UIViewController *vc2 = [[[MyViewController2 alloc] initWithNibName:nil bundle:nil] autorelease];
[rootViewController presentViewController:vc2 animated:YES completion:NULL];

问题是,我永远无法让第二个 View Controller 显示出来。事实证明,据我所知,dismissViewControllerAnimated:completion: 需要“完成”时间的异步 block 才能通过,然后才能正常工作 presentViewController:animated:completion:再次。 Apple's docs 中没有直接记录这一事实,据我所知。

我想出的解决方案是用一个方法包装解雇,该方法指定您之后要调用的选择器,如下所示:

- (void)dismissViewController:(UIViewController *)presentingController
postAction:(SEL)postDismissalAction
{
[presentingController dismissViewControllerAnimated:YES
completion:^{
[self performSelectorOnMainThread:postDismissalAction
withObject:nil
waitUntilDone:NO];
}];
}

然后我会调用:

[self dismissViewController:self.window.rootViewController
postAction:@selector(methodForNextModalPresentation)];

无论如何,我想发帖,因为我环顾四周并没有看到任何人有这个特殊问题,所以我认为它可能对人们理解有用。而且,我想验证我没有破解具有更好的解决方案设计模式的解决方案。

最佳答案

只是为了清楚起见。你是说这段代码不起作用吗?

[myRootViewController dismissViewControllerAnimated:YES completion:^{
[myRootViewController pushViewController:newController animated:YES];
}];

关于ios - 连续调用 UIViewController 的 presentViewController 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10629080/

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