码迷,mamicode.com
首页 > 其他好文 > 详细

获取当前控制器(如果是在tabbarController中也能正确的获得当前控制器,而不是tabbarController)

时间:2017-04-29 11:55:02      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:nav   return   arc   result   getc   normal   orm   selected   iap   


+ (UIViewController *)getCurrentVC { UIWindow * window = [[UIApplication sharedApplication] keyWindow]; if (window.windowLevel != UIWindowLevelNormal){ NSArray *windows = [[UIApplication sharedApplication] windows]; for(UIWindow * tmpWin in windows){ if (tmpWin.windowLevel == UIWindowLevelNormal){ window = tmpWin; break; } } } UIViewController *result = window.rootViewController; while (result.presentedViewController) { result = result.presentedViewController; } if ([result isKindOfClass:[UITabBarController class]]) { result = [(UITabBarController *)result selectedViewController]; } if ([result isKindOfClass:[UINavigationController class]]) { result = [(UINavigationController *)result topViewController]; } return result; }

 

获取当前控制器(如果是在tabbarController中也能正确的获得当前控制器,而不是tabbarController)

标签:nav   return   arc   result   getc   normal   orm   selected   iap   

原文地址:http://www.cnblogs.com/siasyl/p/6784630.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!