Contents

revertToSaved(_:)

The action of the File menu item Revert in a document-based app.

Declaration

@IBAction func revertToSaved(_ sender: Any?)

Parameters

  • sender:

    The control sending the message.

Discussion

The default implementation of this method presents an alert dialog giving the user the opportunity to cancel the operation. If the user chooses to continue, the method ensures that any editor registered using the Cocoa Bindings NSEditorRegistration informal protocol has discarded its changes and then invokes revert(toContentsOf:ofType:). If that returns false, the method presents the error to the user in an document-modal alert dialog.

See Also

Related Documentation

Handling User Actions