Parameter | Details |
---|---|
showsFPS | Display a count of the current frame rate in Frames Per Second in the view. |
showsNodeCount | Display a count of the current number of SKNodes being displayed in the view. |
showsPhysics | Display a visual representation of the SKPhysicsBodys in the view. |
showsFields | Display an image representing the effects of the physics fields in the view. |
showsDrawCount | Display a count of the number of drawing passes required to render the view. |
showsQuadCount | Display a count of the number of rectangles required to render the view. |
An SKView is a subclass of UIView that is used to present SpriteKit 2D animations.
An SKView can be added to Interface Builder or programatically in the same way as 'normal' UIViews. SpriteKit content is then presented in the SKView in an SKScene.
See also SKView Class Reference from Apple Documentation.