gpt4 book ai didi

swift - macOS 远程推送通知不显示警报横幅

转载 作者:可可西里 更新时间:2023-11-01 01:56:15 28 4
gpt4 key购买 nike

我正在尝试为我的 macOS 应用程序启用推送通知。一切似乎都在运作。我能够获得设备 token 。发送通知没有错误。除了我的 Mac 上没有显示任何警报。

我添加了以下代码以查看我的应用程序是否收到它。

func application(_ application: NSApplication, didReceiveRemoteNotification userInfo: [String : Any]) {
print(userInfo)
}

发送通知后,我在控制台中看到以下内容。

["aps": {
alert = "Alert - Hello World";
sound = "ping.aiff";
}]

所以看起来它可以正常到达设备,只是没有显示警报。

我已经在 iOS 上测试了完全相同的设置,它工作正常并在那里显示警报。所以我一定是在 macOS 上遗漏了一些东西。

我尝试了以下方法来解决这个问题:

  1. 在关闭和打开应用程序的情况下进行了测试(两次均无效)
  2. 确保在系统偏好设置中为应用程序启用通知

System Preferences Image

  1. 如果我在代码中手动创建本地通知,它会完美运行,并且会出现通知横幅
  2. 我无法在旧版本的 macOS 上测试它,因为我使用的推送通知 API 刚刚在 macOS Mojave 中发布
  3. 我也试过创建另一个测试项目,也出现了同样的问题
  4. 我已确保“请勿打扰”已关闭,并且还在通知中心查看了通知,但它也没有显示在那里。

如何让它在 macOS 上显示横幅并播放声音?

最佳答案

在 iOS 中,以下代码可以正常工作:

UNUserNotificationCenter.current().requestAuthorization(options: options) { granted, _ in
guard granted else { return }

DispatchQueue.main.async {
application.registerForRemoteNotifications()
}
}

对于 macOS,我将该代码更改为:

UNUserNotificationCenter.current().requestAuthorization(options: options) { granted, _ in
guard granted else { return }

DispatchQueue.main.async {
NSApplication.shared.registerForRemoteNotifications()
}
}

原来行 NSApplication.shared.registerForRemoteNotifications() 是不正确的。在 macOS 上,您必须传入您在此调用中提供的相同选项。

将该行更改为以下行。

NSApplication.shared.registerForRemoteNotifications(matching: [.alert, .sound, .badge])

我觉得奇怪的是 Apple's documentation它说该方法已弃用,我们应该改用 registerForRemoteNotifications()。这让我觉得 registerForRemoteNotifications() 存在某种类型的错误,通知显示不正确。

还有一件事要提。确实花了一点时间(几分钟),并发送了一些通知,它们在进行更改后才真正出现。不确定这是否只是由于互联网连接速度慢或其他原因。但是现在发送后出现的速度非常快。


编辑

Apple 已通知我此问题已在 macOS 10.14.4 中修复。我还不能升级到最好的并测试它。所以我现在无法确认。当我有机会在 macOS 10.14.4 上进行测试时,我会更新它。

关于swift - macOS 远程推送通知不显示警报横幅,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53136126/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com