Skip to content

Instantly share code, notes, and snippets.

@owenzhao
Created November 23, 2016 10:24
Show Gist options
  • Save owenzhao/5d03801c49d2ae98628840dcffe0d31c to your computer and use it in GitHub Desktop.
Save owenzhao/5d03801c49d2ae98628840dcffe0d31c to your computer and use it in GitHub Desktop.
Menu Actions
//MARK: - Help Menu
extension NSApplication {
@IBAction func contactDeveloper(_ sender: Any) {
let mailAddress = "your email address"
let mailBody = NSLocalizedString("Please use Chinese or English in your mail, if you can.", comment: "mail body")
let service = NSSharingService(named: NSSharingServiceNameComposeEmail)!
service.recipients = [mailAddress]
service.perform(withItems: [mailBody])
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment