---
title: applicationFinishedRestoringState()
framework: uikit
role: symbol
role_heading: Instance Method
path: uikit/uistaterestoring/applicationfinishedrestoringstate()
---

# applicationFinishedRestoringState()

Called after all objects have had a chance to decode their state.

## Declaration

```swift
optional func applicationFinishedRestoringState()
```

## Discussion

Discussion Implement this method, as needed, to perform additional configuration of the restored object. This method is called toward the end of the restoration process when all objects have been decoded. You might use this method to restore state that exists between multiple objects or in cases where you have dependencies that make decoding those objects in a specific order difficult. The order in which this method is called on decoded objects is not guaranteed.

## See Also

### Encoding and decoding the object

- [encodeRestorableState(with:)](uikit/uistaterestoring/encoderestorablestate(with:).md)
- [decodeRestorableState(with:)](uikit/uistaterestoring/decoderestorablestate(with:).md)
