autosave(withImplicitCancellability:completionHandler:)
Autosaves the document’s contents to an appropriate file-system location, as needed.
Declaration
func autosave(withImplicitCancellability autosavingIsImplicitlyCancellable: Bool, completionHandler: @escaping ((any Error)?) -> Void)func autosave(withImplicitCancellability autosavingIsImplicitlyCancellable: Bool) async throwsParameters
- autosavingIsImplicitlyCancellable:
The value in the Autosavingisimplicitlycancellable property while autosaving is happening.
- completionHandler:
The completion handler block object passed in to be invoked at some point in the future, perhaps after the method invocation has returned. The completion handler must be invoked on the main thread.
The block takes one argument:
errorOrNilIf successful, pass a
nilerror. If not successful, pass anNSErrorobject that encapsulates the reason why the document could not be autosaved.
Discussion
The default implementation of this method does the following:
Checks the value of the hasUnautosavedChanges property.
If the value of that property is false, the method runs the completion handler with a
nilerror and returns immediately.
If the value is true, calls autosavesInPlace on the class to determine where the autosaved document contents should go.
The method also gets the value in fileURL to ensure that the file has an actual URL, because it is not possible to autosave in place if the document does not yet have a permanent location. 3. Checks the value in the autosavingFileType property to determine the file type for the autosaved file. 4. Calls save(to:ofType:for:completionHandler:).
The value of the saveToURL parameter is the location where the file should be saved. If the file has a URL and the class specifies that autosave should occur in place, this is the URL of the file. Otherwise, this is the location of a nonexistent file in the specified autosave location.
The value for the ofType parameter is determined by a call to autosavingFileType.
The value of the forSaveOperation parameter is NSAutosaveInPlaceOperation if the class is configured to autosave in place and the file has a URL. Otherwise, the value is NSAutosaveElsewhereOperation.