Skip to content

Instantly share code, notes, and snippets.

@aniltv06
Last active September 29, 2016 09:33
Show Gist options
  • Save aniltv06/8087c166a0a73117c0ccd7bfa2085a97 to your computer and use it in GitHub Desktop.
Save aniltv06/8087c166a0a73117c0ccd7bfa2085a97 to your computer and use it in GitHub Desktop.
Alert Sheet Code in Swift 3
let alert = NSAlert()
alert.messageText = "Enter Message"
alert.informativeText = "Enter Informative Message"
alert.alertStyle = NSInformationalAlertStyle
alert.addButton(withTitle: "OK")
alert.addButton(withTitle: "Cancel")
alert.beginSheetModal(for: self.window, completionHandler: { (modalResponse) in
if(modalResponse == NSAlertFirstButtonReturn){
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment