ios 判断当前设备
[cpp]if(UI_USER_INTERFACE_IDIOM() == UIUserInte易做图ceIdiomPhone)
{
CGSize result = [[UIScreen mainScreen] bounds].size;
if(result.height == 480.f)
{
return @"ViewController";
}
else
{
return @"ViewController-iPhone5";
}
}
return @"ViewController-iPad";
补充:移动开发 , IOS ,