I am building a game with swift and sprite kit and I want to place a sprite on the very top of the screen.
when I do sprite.position = CGPoint(x: 0 , y: self.frame.maxY)
on an iPhone it places the sprite on the top, however on an iPad it does not show anywhere (I'm guessing the sprite is above the max Y value of the iPad)
how can I make it so the sprite is on top of the screen for both the iPad, and iPhone. Thanks