所以我有以下图像:
splash1.png (IPHONE 3) splash1@2x.png (IPHONE 4) splash1-568h@2x.png (IPHONE 5)
我想在 iphone 3、4、5 中显示相应的图像。
我试着做
UIImage * img = [UIImage imageNamed: @"splash1.png"];
self.splashimg.image = img;
[self.splashimg setFrame: CGRectMake(0, 0, img.size.width, img.size.height)];
self.splashimg 是一个为图像 img 提供鞋底的图像视图。
但这仍然显示 iphone 3 图像并且没有获得 iphone 4 或 5 图像。
我能做些什么?
当我在 iphone 5 中查看应用程序时,我看到的是启动图像,但它是 iphone 3 版本。