このメソッドを実装すると、SourceKitService が終了しました。
override func touchesBegan(touches: NSSet!, withEvent event: UIEvent!)
!を削除すると 、 できます。しかし、もちろん、コードでエラーが発生しました。完全なコード:
override func touchesBegan(touches: NSSet!, withEvent event: UIEvent!) {
for touch: AnyObject in touches {
let location = touch.locationInNode(self)
if nodeAtPoint(location).name == "plane" {
println("plane touched")
}
}
}