Skip to content

Instantly share code, notes, and snippets.

@janhesters
Last active September 17, 2018 15:35
Show Gist options
  • Save janhesters/8f9458d085c0d988cbde314ff6414893 to your computer and use it in GitHub Desktop.
Save janhesters/8f9458d085c0d988cbde314ff6414893 to your computer and use it in GitHub Desktop.
// ... Other imports
#import "Orientation.h"
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// ... Leave this untouched
}
- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
return [Orientation getOrientation];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment