Last active
June 20, 2016 19:07
-
-
Save olxios/fb681c7620fd0a48aa20b023359eca66 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (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