I have an SKLabelNode that is the child of a SKSpriteNode because I\'m trying to create a Button class to create buttons in an easier way. I\'ve tried a couple of things using t
This will put your label in center of scene in sprite kit:
yourLabel.horizontalAlignmentMode = .Center; yourLabel.verticalAlignmentMode = .Center