How do I turn off interaction for a childnode?
I'm adding labels to a bunch of sprites, beneath the sprite, describing what they are. The sprites themselves are touchable, and have code that responds when touchesBegun etc.
The labels do not visually overlap the sprite, they're fully beneath the visual representation of the Sprites, but they are children of their respective Sprite, and I'd like to keep it that way.
But I don't want the labels to respond to touch.
I set the labels to
myLabel.isUserInteractionEnabled = false
But this doesn't make any difference, they're still responding to touch as if they're the Sprite.