1

我有以下代码行,可以通过单击“测试”按钮发布通知。

import Cocoa

@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate, NSUserNotificationCenterDelegate {
    func userNotificationCenter(_ center: NSUserNotificationCenter, shouldPresent notification: NSUserNotification) -> Bool {
        return true
    }
}

import Cocoa
import CloudKit

class HomeViewController: BasicViewController, NSUserNotificationCenterDelegate {
    override func viewDidLoad() {
    }

    @IBAction func testClicked(_ sender: NSButton) {
        let notification = MyNotificationDelegate()
        NSUserNotificationCenter.default.delegate = self
        notification.setNotification(title: "Test", message: "Test me if you can!")       
    }
}

import Cocoa

class MyNotificationDelegate: NSObject {
    func setNotification(title: String, message: String) {
        let notification: NSUserNotification = NSUserNotification()
        notification.title = title
        notification.informativeText = message
        NSUserNotificationCenter.default.deliver(notification)
    }
}

此代码来自此主题。是NSUserNotification

我已经看到了这个话题。是UNUserNotification。基本上,它的作用与上述相同。那么 NSUserNotification 和 UNUserNotification 有什么区别呢?我看到的唯一区别是后者可以让您了解用户是否允许发布通知。

NSUserNotification如果应用程序在前面,也不UNUserNotification会让系统显示通知。我想知道为什么?

谢谢。

4

1 回答 1

1

NSUserNotification 现在已弃用。

UNNotification 对象包含初始通知请求,其中包含通知的有效负载,以及通知的传递日期。

不要直接创建通知对象。处理通知时,系统会将通知对象传递给您的 UNUserNotificationCenterDelegate 对象。UNUserNotificationCenter 对象还维护着以前发送的通知列表,您可以使用 getDeliveredNotifications(completionHandler:) 方法来检索这些对象。

改用 UNUserNotifaction

于 2020-10-09T03:19:27.263 回答