iOS 获取当前展示的页面

  1. - (UIViewController *)getCurrentVC
  2. {
  3. UIViewController *result = nil;
  4. UIWindow * window = [[UIApplication sharedApplication] keyWindow];
  5. if (window.windowLevel != UIWindowLevelNormal)
  6. {
  7. NSArray *windows = [[UIApplication sharedApplication] windows];
  8. for(UIWindow * tmpWin in windows)
  9. {
  10. if (tmpWin.windowLevel == UIWindowLevelNormal)
  11. {
  12. window = tmpWin;
  13. break;
  14. }
  15. }
  16. }
  17. UIView *frontView = [[window subviews] objectAtIndex:0];
  18. id nextResponder = [frontView nextResponder];
  19. if ([nextResponder isKindOfClass:[UIViewController class]])
  20. result = nextResponder;
  21. else
  22. result = window.rootViewController;
  23. return result;
  24. }
  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. return topVC;
  9. }
  10. 如果是在AppDelegate中
  11. 如果是用UINavigationController来组织页面结构的话可以使用:

    ((UINavigationController*)appDelegate.window.rootViewController).visibleViewController;

    如果是用UITabBarController来组织页面结构的话:

    ((UITabBarController*)appDelegate.window.rootViewController).selectedViewController;
上一篇:利用webBrowser获取框架内Html页面内容


下一篇:openstack安装过程遇到的问题