open(completionHandler:)
Opens a document asynchronously.
Declaration
func open(completionHandler: (@Sendable (Bool) -> Void)? = nil)func open() async -> BoolParameters
Discussion
Call this method to begin the sequence of method calls that opens and reads a document asynchronously. The method obtains the file-system location of the document from the fileURL property. After the open operation concludes, the code in completionHandler is executed.
You can override this method if you want custom document-opening behavior, but if you do it’s recommended that you call the superclass implementation first (super). If you don’t call super, you should use the NSFileCoordinator class to implement coordinated reading. The default implementation calls performAsynchronousFileAccess(_:) to schedule the document-reading work for execution on a background queue and then, from the dispatched block, performs file coordination. The queued task then calls read(from:).