Skip to content

Instantly share code, notes, and snippets.

@dzenbot
Created July 5, 2015 13:14
Show Gist options
  • Save dzenbot/95d6e0805b8f0afd64a9 to your computer and use it in GitHub Desktop.
Save dzenbot/95d6e0805b8f0afd64a9 to your computer and use it in GitHub Desktop.
Gets the appropriate View Controller to present from and play nice with view hierarchy
- (UIViewController *)appropriatePresentationViewController
{
UIViewController *rootviewController = [UIApplication sharedApplication].keyWindow.rootViewController;
return rootviewController.presentedViewController ? : rootviewController;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment