Create an NSAlert with Swift

beginSheetModalForWindow:modalDelegate is deprecated in OS X 10.10 Yosemite. Swift 2 func dialogOKCancel(question: String, text: String) -> Bool { let alert: NSAlert = NSAlert() alert.messageText = question alert.informativeText = text alert.alertStyle = NSAlertStyle.WarningAlertStyle alert.addButtonWithTitle(“OK”) alert.addButtonWithTitle(“Cancel”) let res = alert.runModal() if res == NSAlertFirstButtonReturn { return true } return false } let answer = dialogOKCancel(“Ok?”, text: “Choose … Read more