如果这个问题还有其他答案,请原谅我,但我还没有找到搜索问题的好方法。
在 iPhone5 模拟器上,尽管尺寸合适,但我的背景图像大约短了一点。见截图:
我的图片都是640px × 1136px的.png文件,我的图片代码如下:
backgroundImage1 = [[UIImageView alloc] initWithFrame:frame];
[backgroundImage1 setContentMode:UIViewContentModeScaleAspectFill];
[backgroundImage1 setAutoresizingMask:UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth];
[self addSubview:backgroundImage1];
我会在手机上尝试,但我的证书已过期,所以在开发中心重新上线之前我不能。
有什么想法吗?
Best Answer-推荐答案 strong>
改变
[backgroundImage1 setContentMode:UIViewContentModeScaleAspectFill];
到
[backgroundImage1 setContentMode:UIViewContentModeScaleToFill];
让它填满整个屏幕
希望这会有所帮助!
关于ios - 背景图片大约短一点,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/17824505/
|