您好通知未显示在Mac OS Catalina上,这是我的代码:
func showNotification() {
let notification = NSUserNotification()
// All these values are optional
notification.title = "Test of notification"
notification.subtitle = "Subtitle of notifications"
notification.informativeText = "Main informative text"
notification.soundName = NSUserNotificationDefaultSoundName
NSUserNotificationCenter.default.deliver(notification)
}
[我注意到,当我打开我的Mac应用程序时,出现了一个通知请求。也许我必须执行那个?但是我找不到任何文档。如何查看本地通知...
即使使用UserNotification,它也不起作用