ios 获取当前页面所在控制器
- (UIViewController *)currentViewController{
UIViewController * currVC = nil;
UIWindow *window = [UIApplication sharedApplication].delegate.window;
UIViewController * Rootvc = window.rootViewController;
do {
if ([Rootvc isKindOfClass:[UINavigationController class]]) {
UINavigationController * nav = (UINavigationController *)Rootvc;
UIViewController * v = [nav.viewControllers lastObject];
currVC = v;
Rootvc = v.presentedViewController;
continue;
}else if([Rootvc isKindOfClass:[UITabBarController class]]){
UITabBarController * tabVC = (UITabBarController *)Rootvc;
currVC = tabVC;
Rootvc = [tabVC.viewControllers objectAtIndex:tabVC.selectedIndex];
continue;
}
} while (Rootvc!=nil);
return currVC;
}
本文标题:ios 获取当前页面所在控制器
本文链接:https://www.haomeiwen.com/subject/hhtydftx.html
网友评论