方法一:(亲测无效)
BOOL getRuntimeClassIsIpad()
{
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad)
{
return TRUE;
}
return FALSE;
}
方法二:(亲测无效)
#define IS_IPHONE (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
#define IS_PAD (UI_USER_INTERFACE_IDIOM()== UIUserInterfaceIdiomPad)
方法三:(这个是可以的)
BOOL getRuntimeClassIsIpad()
{
if ([[UIDevice currentDevice] model] isEqualToString:@"iPad")
{
return TRUE;
}
return FALSE;
}