I\'ve done some searching but haven\'t found anything directly addressing my issue: I have an SKScene
with several SKNodes
each with SKSprite
Your problem is here that you are directly setting SKView
as a controller view. To overcome from this issue don't make self.view
a type of SKView
. Do the following step in your storyboard or Xib :
UIImageView
on the controller's view first. Set the image as well.SKView
over the UIImageView
and set UIClearColor
to the background colour. So the complete hierarchy is like UIViewController
->UIView
->UIImageView
->SKView