I am pretty new to iOS, objective C and working with Xcode. I only did one simple news type app, but now I would like to create a game I had published on another platform.>
override func touchesBegan(touches: Set, withEvent event: UIEvent?) {
let touch = touches.first!
let location = touch.locationInNode(self)
let node = self.nodeAtPoint(location)
if node.name == "spriteName" {
// Present new game scene
}
}