【发布时间】:2018-08-29 14:39:36
【问题描述】:
我尝试使用 Swift 在 Mac OS 上显示一些通知横幅。但我只在通知中心获得它们,而不是作为横幅。
你有什么想法吗?这是我的简单代码:
func showNotification() -> Void {
let notification = NSUserNotification()
notification.title = "Title of notification"
notification.subtitle = "Subtitle of notification"
notification.soundName = NSUserNotificationDefaultSoundName
NSUserNotificationCenter.default.deliver(notification)
}
@IBAction func btnPressed(_ sender: NSButton) {
showNotification()
testLbl.stringValue = "Button was pressed"
}
【问题讨论】:
标签: swift macos notifications