Pausing a sprite kit scene
Use Scene to Paused Functionality
self.scene?.view?.paused = true
Use SKView
's isPaused
property:
Swift:
scene.view?.isPaused = true
Objective C:
self.scene.view.isPaused = YES;
This will stop all actions and physics simulation.