In learning SpriteKit, I am trying to make a small adventure game. I am creating a hero, and adding it to the scene, and then later, during touchesBegan:, I det
touchesBegan:
Just be sure to add this in your init method.
self.userInteractionEnabled = YES;
For some reasons this is not enabled by default when you subclass. At least for me it worked only when manually enabled.