I am new to game development and was wondering what is the best approach for displaying game data on screen.
I have an endless runner where the sprite collects gems and I want the total to be displayed on screen. I was looking at placing a UIView with a UILabel above the SKView and getting the label to update after each touch. I also want a game over screen to appear at the end and was also looking at creating this using a UIView.
Is this the best approach or should all data be kept within the SKView itself?
Hopefully this makes sense.