Adding UITextView to a scene in SpriteKit
问题 I trying to create a game, and following Apple's advice I am using multiple scenes. You could consider the game to be a text heavy point and click adventure. Therein lies the problem. Lots of text, having done a bit of a search, it seems the recommend way, or rather the current only way to do this is with a UITextView thus: [self.view addSubview: textView]; This is all well and good if you only have one SKScene , as that is the scene being displayed by the current view/SKView. My problem is,