Skip to content

Instantly share code, notes, and snippets.

@MaximAlien
Created September 15, 2015 15:37
Show Gist options
  • Save MaximAlien/1ff8f0699d0b4cbd5a50 to your computer and use it in GitHub Desktop.
Save MaximAlien/1ff8f0699d0b4cbd5a50 to your computer and use it in GitHub Desktop.
[iOS] Code which detects what type of device is used: Phone or Tablet.
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{
NSLog(@"iPad");
}
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
{
NSLog(@"iPhone");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment