为了适配iPhone5,很多时候要针对iPhone5和非iPhone5用不同的图片。我原来的写法特别罗嗦,如下:
UIImage* imgBg =nil;
if(IS_IPHONE5)
{
imgBg = [UIImageimageNamed:@"splash_bg-568h.png"];
}
else
{
imgBg = [UIImageimageNamed:@"splash_bg.png"];
}
后来改成了简洁写法,代码看着就清爽一些了。如下:
UIImage* imgBg = [UIImageimageNamed:IS_IPHONE5 ?@"splash_bg-568h.png" : @"splash_bg.png"];