NSString *devicetype;
if((UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)){
devicetype = @"ipad";
}else{
devicetype = @"iphone";
}
私は2つの画像を持っています
背景_IPAD.PNG
と
背景_iPhone.PNG
今、この文字列を次のように使用したい
BackGround = [CCSprite spriteWithFile:[NSString StringWithFormat:@"background_%@.png",DEVICETYPE]];
これは可能ですか?そうでない場合、より良い方法はありますか?