Skip to content

Instantly share code, notes, and snippets.

@dlevi309
Created September 24, 2021 18:27
Show Gist options
  • Select an option

  • Save dlevi309/43b665884658add90dda7c6c27c44a2d to your computer and use it in GitHub Desktop.

Select an option

Save dlevi309/43b665884658add90dda7c6c27c44a2d to your computer and use it in GitHub Desktop.
#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