I would like to know how to create a NSString that, when displayed, shows up on 2 lines. I've tried \n or @"\n" and nothing works.
SKLabelNode *gameinstructions = [SKLabelNode labelNodeWithFontNamed:@"AvenirNext-Heavy"];
gameinstructions.text = [NSString stringWithFormat:@"PLAY! \n hello"];
gameinstructions.fontColor = [self randomColor];
gameinstructions.fontSize = [self convertFontSize:30];
gameinstructions.zPosition = 0;
gameinstructions.horizontalAlignmentMode = SKLabelHorizontalAlignmentModeCenter;
gameinstructions.position = CGPointMake(CGRectGetMidX(self.frame), CGRectGetMidY(self.frame));
SKAction *textFade = [SKAction fadeAlphaTo:0 duration:7];
[gameinstructions runAction:textFade];
[self addChild:gameinstructions];
So how do I get my app to display "hello" on a separate line from "play!"?