---
title: "willMove(from:)"
framework: spritekit
role: symbol
role_heading: Instance Method
path: "spritekit/skscene/willmove(from:)"
---

# willMove(from:)

Tells you when the scene is about to be removed from a view.

## Declaration

```swift
func willMove(from view: SKView)
```

## Parameters

- `view`: The view that is presenting the scene.

## Discussion

Discussion This method is intended to be overridden in a subclass. You can use this method to implement any custom behavior for your scene when it is about to be removed from the view.

## See Also

### Responding to Loading and Resizing Events

- [sceneDidLoad()](spritekit/skscene/scenedidload().md)
- [didChangeSize(_:)](spritekit/skscene/didchangesize(_:).md)
- [didMove(to:)](spritekit/skscene/didmove(to:).md)
