I'm trying to write this alert:
func alertUser() {
let alert = NSAlert()
alert.messageText = "message 1"
alert.informativeText = "info1"
alert.informativeText = "info2"
alert.addButton(withTitle: "NO")
alert.addButton(withTitle: "YES")
alert.beginSheetModal(for: self.view.window!) { (returnCode: NSModalResponse) -> Void in
print ("returnCode: ", returnCode)
}
but I get the dreaded unexpectedly found nil while unwrapping an Optional value
message on the line alert.beginSheetModal
Please tell me what I'm doing wrong.
Thanks