Swift:可可,本地通知未显示在Mac OS Catalina中

问题描述 投票:0回答:1

您好通知未显示在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,它也不起作用

swift cocoa notifications
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.