Skip to content

Instantly share code, notes, and snippets.

@olxios
Last active June 20, 2016 19:07
Show Gist options
  • Save olxios/fb681c7620fd0a48aa20b023359eca66 to your computer and use it in GitHub Desktop.
Save olxios/fb681c7620fd0a48aa20b023359eca66 to your computer and use it in GitHub Desktop.
- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
if ([self.window.rootViewController.presentedViewController isKindOfClass:[SecondViewController class]])
{
return UIInterfaceOrientationMaskAll;
}
else return UIInterfaceOrientationMaskPortrait;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment