Advertisement
priore

How to retrieve the current displayed viewcontroller

Jul 11th, 2013
968
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //
  2. // how to retrieve the current displayed viewcontroller
  3. //
  4. + (UIViewController*)topMostController
  5. {
  6.     UIViewController *topController = [[UIApplication sharedApplication] keyWindow].rootViewController;
  7.     while (topController.presentedViewController) {
  8.         topController = topController.presentedViewController;
  9.     }
  10.    
  11.     return topController;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement