lock(completionHandler:)
Prevents the user from making further changes to the document.
Declaration
func lock(completionHandler: ((Bool) -> Void)? = nil)func lock() async -> BoolParameters
- completionHandler:
The completion handler block object passed in to be invoked after locking is completed, regardless of success or failure of locking.
Discussion
By default, this method first ensures that any editor who has registered using Cocoa Binding’s NSEditorRegistration informal protocol has committed all changes and then autosaves the document, if necessary, before attempting to lock it using the lock(completionHandler:) method. Upon successful locking, the isLocked property is set to [YES]. Documents whose fileURL property is set to nil cannot be locked.