beginSheetModal(for:completionHandler:)
Presents the panel as a sheet modal to the specified window.
Declaration
func beginSheetModal(for window: NSWindow, completionHandler handler: @escaping (NSApplication.ModalResponse) -> Void)func beginSheetModal(for window: NSWindow) async -> NSApplication.ModalResponseParameters
- window:
The window in which the panel will be presented.
- handler:
The block called after the user dismisses the panel. The argument passed in will be Nsfilehandlingpanelokbutton if the user chose the OK button or Nsfilehandlingpanelcancelbutton if the user chose the Cancel button.
Discussion
Configure all the relevant properties of the panel before you call this method. The completion handler block runs after the user dismisses the panel, but while the panel may still be onscreen. If you need to dismiss the panel from the screen—for example, if the completion block displays an alert—close the panel by calling its orderOut(_:) method with the value nil.