NSString *s=[[UIDevice currentDevice] model]; //可以根据这个字符串判断
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)//也可以根据这个条件判断
{
//ipad
CCLOG(@"ipad>> %@",s);
}
else
{
CCLOG(@"other>> %@",s);
//other
}
NSString *s=[[UIDevice currentDevice] model]; //可以根据这个字符串判断
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)//也可以根据这个条件判断
{
//ipad
CCLOG(@"ipad>> %@",s);
}
else
{
CCLOG(@"other>> %@",s);
//other
}