Skip to content

Instantly share code, notes, and snippets.

@joaquin-viera
Created January 8, 2021 02:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joaquin-viera/946b697d774466f3a6ea4a2c922b8380 to your computer and use it in GitHub Desktop.
Save joaquin-viera/946b697d774466f3a6ea4a2c922b8380 to your computer and use it in GitHub Desktop.
Landscape Orientation - AppDelegate.m
+#import "Orientation.h"
@implementation AppDelegate
// ...
+- (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