背景图片的大小是多少?

时间:2015-12-24 19:06:18

标签: ios xcode background-image assets

我正在使用Swift开发一款游戏(但不是精灵套件),而且我在制作背景图像方面遇到了很多麻烦。我最近理解了@ 1x,@ 2x和@ 3x图像及其像素的概念,但我无法找到任何说明背景图像必须具有的尺寸(宽度和高度)的地方画布模式,预览模式和操作都很好。

任何人都可以帮助我吗?

为了获得帮助,我附上了我制作的两个测试打印屏幕。

感谢您的帮助:)

Image on Xcode 7 canvas

image in preview mode. Notice how he cut the edges

1 个答案:

答案 0 :(得分:1)

设备尺寸图标:
Size Image Device Iphone

UIImageView *imageView = [UIImageView alloc]init]; 
imageView.frame = CGRectMake(0,0,widthInt,heightInt);
imageView.image = [UIImage ImageWithName:@"nameImage.png"];