gpt4 book ai didi

ios - 如何使用包含多个导航 Controller 的 View 层次结构弹出到 Root View Controller

转载 作者:行者123 更新时间:2023-12-01 18:12:14 27 4
gpt4 key购买 nike

我有一个 View 层次结构 多个 UINavigationControllers

现在从一个特定的 View Controller ,我想弹出到 window.rootviewcontroller

我怎样才能做到这一点?

我试过

[UIApplication sharedApplication].keyWindow.rootViewController popToRootViewController];

但它不起作用。请建议。

请注意我想去window.rootVC。

这对我不起作用

 [self.navigationController popToRootViewControllerAnimated:YES];

最佳答案

只需获取窗口实例并再次设置 Root View Controller ,如 popToRootViewController仅弹出到特定导航堆栈的 Root View Controller

- (void)popToRoot
{
AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
UIWindow *mainWindow = appDelegate.window;
ViewController *viewControllerObj = [ViewController new];
UINavigationController *navigationObject = [[UINavigationController alloc] initWithRootViewController:viewControllerObj];
[mainWindow setRootViewController:navigationObject];
}

希望这可以帮助。

关于ios - 如何使用包含多个导航 Controller 的 View 层次结构弹出到 Root View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28426718/

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