0
如何使用Swift 3將遊戲場景鏈接到視圖控制器?遊戲場景到視圖控制器
我剛剛創建了一個按鈕,但我在函數touchesEnded上創建的鏈接不起作用。
override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
let touch = touches.first
let touchLocation = touch!.location(in: self)
if buttonHome.contains(touchLocation) {
print("tapped!")
let home:UIViewController = FirstViewController()
self.view?.window?.rootViewController!.present(home, animated: true, completion: nil)
}
}
我更新了問題,我只想從遊戲場景到視圖控制器。 –
什麼是segue – Pragma1
只是一個鏈接,就好像它在兩個視圖控制器之間。但是我需要一個從場景到視圖控制器的鏈接。我只是有一場比賽,我想回到主菜單(視圖控制器)。 –