Skip to content

Instantly share code, notes, and snippets.

@gravicle
Last active April 23, 2016 13:47
Show Gist options
  • Save gravicle/f19fa2740158b8a3f4660a7c428408c0 to your computer and use it in GitHub Desktop.
Save gravicle/f19fa2740158b8a3f4660a7c428408c0 to your computer and use it in GitHub Desktop.
extension UIApplication {
static var topViewController: UIViewController? {
var topVC = UIApplication.sharedApplication().keyWindow?.rootViewController
if let tabController = rootTabBarController {
topVC = tabController.selectedViewController
}
while(topVC?.presentedViewController != nil) {
topVC = topVC!.presentedViewController
}
if let navController = topVC as? UINavigationController {
topVC = navController.visibleViewController
}
return topVC
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment