我想在我的GameScene中显示背景图片。当我去运行它时,除了iPhone 5 / 5S之外,它在每个设备上都能正常显示。下面是屏幕截图,显示了iPhone 4s和iPhone 5在模拟器上的样子。
这就是我展示背景图片的方式:
// set background image
let backgroundImage = SKSpriteNode(imageNamed: "bg")
backgroundImage.position = CGPointMake(frame.size.width/2, frame.size.height/2)
addChild(backgroundImage)
我在模拟器和实际设备上测试过它仍然存在这个问题。