iOS 获取当前顶层的ViewController

Posted 俊华的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 获取当前顶层的ViewController相关的知识,希望对你有一定的参考价值。

ios 获取当前顶层的ViewController

#pragma mark - topVC

- (UIViewController *)theTopviewControler {
    UIViewController *resultVC;
    resultVC = [self _topViewController:[[UIApplication sharedApplication].keyWindow rootViewController]];
    while (resultVC.presentedViewController) {
        resultVC = [self _topViewController:resultVC.presentedViewController];
    }
    return resultVC;
}

- (UIViewController *)_topViewController:(UIViewController *)vc {
    if ([vc isKindOfClass:[UINavigationController class]]) {
        return [self _topViewController:[(UINavigationController *)vc topViewController]];
    } else if ([vc isKindOfClass:[UITabBarController class]]) {
        return [self _topViewController:[(UITabBarController *)vc selectedViewController]];
    } else {
        return vc;
    }
    return nil;
}

 

使用方法

UIViewController *topmostVC = [self topViewController];

 

以上是关于iOS 获取当前顶层的ViewController的主要内容,如果未能解决你的问题,请参考以下文章

iOS开发 - 获取当前View最顶层的ViewController

swift 在应用程序的任何位置获取最顶层的viewController(通常来自appDelegate)。获取当前可见的viewController。

iOS开发——获取当前屏幕显示的viewcontroller

在 UIAlertController 下获取最顶层的视图控制器

如果以模态方式呈现,则获取最顶层的 UIViewController

UIAlertController 下最顶层的 ViewController