获取当前控制器

Posted 琼极一生

tags:

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

1.我们在非视图类中想要随时展示一个view时,需要将被展示的view加到当前view的子视图,或用当前view presentViewController,或pushViewContrller,这些操作都需要获取当前正在显示的ViewController。

 

 

[objc] view plain copy
  1. //获取当前屏幕显示的viewcontroller  
  2. - (UIViewController *)getCurrentVC  
  3. {  
  4.     UIViewController *result = nil;  
  5.       
  6.     UIWindow * window = [[UIApplication sharedApplication] keyWindow];  
  7.     if (window.windowLevel != UIWindowLevelNormal)  
  8.     {  
  9.         NSArray *windows = [[UIApplication sharedApplication] windows];  
  10.         for(UIWindow * tmpWin in windows)  
  11.         {  
  12.             if (tmpWin.windowLevel == UIWindowLevelNormal)  
  13.             {  
  14.                 window = tmpWin;  
  15.                 break;  
  16.             }  
  17.         }  
  18.     }  
  19.       
  20.     UIView *frontView = [[window subviews] objectAtIndex:0];  
  21.     id nextResponder = [frontView nextResponder];  
  22.       
  23.     if ([nextResponder isKindOfClass:[UIViewController class]])  
  24.         result = nextResponder;  
  25.     else  
  26.         result = window.rootViewController;  
  27.       
  28.     return result;  
  29. }  

 

 

2.获取当前屏幕中present出来的viewcontroller。

 

[objc] view plain copy
  1. - (UIViewController *)getPresentedViewController  
  2. {  
  3.     UIViewController *appRootVC = [UIApplication sharedApplication].keyWindow.rootViewController;  
  4.     UIViewController *topVC = appRootVC;  
  5.     if (topVC.presentedViewController) {  
  6.         topVC = topVC.presentedViewController;  
  7.     }  
  8.       
  9.     return topVC;  
  10. }  
 

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

没有使用 navController.currentDestination?.id 获取当前片段 ID

Android - 获取当前片段

在onBackPressed之外的活动中获取当前片段?

在 android dumpsys 中获取当前可见片段的信息

在 viewpager 中获取当前 Fragment 实例

如何使用 TabLayout 在 ViewPager 中的 Google 地图片段中获取当前位置