Contents

application(_:shouldRestoreApplicationState:)

Asks the delegate whether to restore the app’s saved state.

Declaration

optional func application(_ application: UIApplication, shouldRestoreApplicationState coder: NSCoder) -> Bool

Parameters

  • application:

    Your singleton app object.

  • coder:

    The keyed archiver containing the app’s previously saved state information.

Mentioned in

Return Value

true if the app’s state should be restored; otherwise, false.

Discussion

Apps must implement this method and the application(_:shouldSaveApplicationState:) method for state preservation to occur. In addition, your implementation of this method must return true each time UIKit tries to restore the state of your app. You can use the information in the provided coder object to decide whether or not to proceed with state restoration. For example, you might return false if the data in the coder is from a different version of your app and can’t be effectively restored to the current version.

See Also

Deprecated