我想在Xcode上制作一个太空侵略者游戏,并且GameViewController.swift文件中出现错误,提示:
一行上的连续语句必须用';'
分隔这是我的新手,想学习快速开发可以从应用程序商店下载的游戏。
class GameViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
if let view = self.view as! SKView? {
// Load the SKScene from 'GameScene.sks'
let scene = GameScene(size: CGSize(width: 1536, height: 2048))
// Set the scale mode to scale to fit the window
scene.scaleMode = .aspectFill
// Present the scene
view.presentScene (scene)
view.ignoresSiblingOrder = true
view.showsFPS = true
view.showsNodeCount = true
}
}
}
当我单击测试运行时,我希望会弹出一个窗口,显示我的飞船和背景,但显示“ Build Failed”,并显示我的错误,我不确定如何解决