Skip to content

Instantly share code, notes, and snippets.

@akinLiu
Created December 24, 2012 16:39
Show Gist options
  • Save akinLiu/4369932 to your computer and use it in GitHub Desktop.
Save akinLiu/4369932 to your computer and use it in GitHub Desktop.
判断设备类型
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
NSLog(@"ipad");
} else 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