NSString *devicetype;
if((UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)){
devicetype = @"ipad";
}else{
devicetype = @"iphone";
}
我有两张图片
背景_IPAD.PNG
和
背景_IPHONE.PNG
现在我想使用这个字符串
BackGround = [CCSprite spriteWithFile:[NSString StringWithFormat:@"background_%@.png",DEVICETYPE]];
这可能吗?如果没有,那么有没有更好的方法?