标签: ios xcode background-image assets
我正在使用Swift开发一款游戏(但不是精灵套件),而且我在制作背景图像方面遇到了很多麻烦。我最近理解了@ 1x,@ 2x和@ 3x图像及其像素的概念,但我无法找到任何说明背景图像必须具有的尺寸(宽度和高度)的地方画布模式,预览模式和操作都很好。
任何人都可以帮助我吗?
为了获得帮助,我附上了我制作的两个测试打印屏幕。
感谢您的帮助:)
Image on Xcode 7 canvas
image in preview mode. Notice how he cut the edges
答案 0 :(得分:1)
设备尺寸图标:
UIImageView *imageView = [UIImageView alloc]init]; imageView.frame = CGRectMake(0,0,widthInt,heightInt); imageView.image = [UIImage ImageWithName:@"nameImage.png"];