gpt4 book ai didi

ios - 如何获取 rootviewcontroller ios Storyboard

转载 作者:可可西里 更新时间:2023-11-01 03:26:12 25 4
gpt4 key购买 nike

我在 Storyboard的 Root View 中有一个菜单表,我想在 subview 更新数据时重新加载它。如何获取对 Root View 的引用,以便我可以对其调用 reloaddata 方法?

最佳答案

如果 rootViewControllerUIViewController,您可以使用下面的代码访问它

UIViewController *rootController=(UIViewController *)((AppDelegate *)[[UIApplication sharedApplication] delegate]).window.rootViewController;

但是如果它是一个UINavigationController,你可以使用下面的代码。

UINavigationController *nav=(UINavigationController *)((AppDelegate *)[[UIApplication sharedApplication] delegate]).window.rootViewController;
UIViewController *rootController=(UIViewController *)[nav.viewControllers objectAtIndex:0];

关于ios - 如何获取 rootviewcontroller ios Storyboard,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24221515/

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