Created
September 24, 2021 18:27
-
-
Save dlevi309/43b665884658add90dda7c6c27c44a2d 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
| #import <UIKit/UIKit.h> | |
| @interface UIDevice : NSObject | |
| @property (assign, nonatomic) long long UIUserInterfaceIdiom; | |
| @end | |
| typedef NS_ENUM(NSInteger, UIUserInterfaceIdiom) { | |
| UIUserInterfaceIdiomUnspecified = -1, | |
| UIUserInterfaceIdiomPhone = 0, | |
| UIUserInterfaceIdiomPad = 1, | |
| UIUserInterfaceIdiomTV = 2, | |
| UIUserInterfaceIdiomCarPlay = 3, | |
| UIUserInterfaceIdiomCarPlay = 4, | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment