7

当我使用推送有效负载发送时,通知没有显示,mutable-content:1它也没有命中通知服务扩展内的断点,虽然没有显示可变内容推送,但通知内容扩展也工作正常。我没有修改通知服务扩展中的代码,它是 Xcode 生成的默认代码。创建通知服务扩展时我是否遗漏了某些内容,或者可能是设备设置的问题?几天前我在同一台设备上进行了测试,通知服务扩展工作正常。

以下是我的服务扩展代码

import UserNotifications

class NotificationService: UNNotificationServiceExtension {

    var contentHandler: ((UNNotificationContent) -> Void)?
    var bestAttemptContent: UNMutableNotificationContent?

    override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) {
        self.contentHandler = contentHandler
        bestAttemptContent = (request.content.mutableCopy() as? UNMutableNotificationContent)

        if let bestAttemptContent = bestAttemptContent {
            // Modify the notification content here...
            bestAttemptContent.title = "\(bestAttemptContent.title) [modified]"
    
           contentHandler(bestAttemptContent)
        }
    }

    override func serviceExtensionTimeWillExpire() {
        // Called just before the extension will be terminated by the system.
        // Use this as an opportunity to deliver your "best attempt" at modified content, otherwise the original push payload will be used.
        if let contentHandler = contentHandler, let bestAttemptContent =  bestAttemptContent {
            contentHandler(bestAttemptContent)
        }
    }
}

编辑1:下面是我的推送有效载荷

{  
   "aps":{  
      "sound":"default",
      "mutable-content": 1,
      "category": "myCategory",
      "alert":{  
         "body":"this is a custom push",
         "subtitle":"subtitle of the push",
         "title":"Push Test"
      }
      
   }
}

编辑1:问题似乎在运行在 10.2.1 上的特定设备上,我检查了在 10.2 上运行的其他设备,它触发了通知服务扩展。

4

2 回答 2

21

最后我能够解决这个问题。我不确定是什么导致了这个问题,但经过一些实验后,我意识到不仅我的服务扩展,而且所有其他已安装应用程序的服务扩展都不起作用,并且在发送带有“可变内容:1”的推送有效负载时,未显示通知。重启设备后,它开始工作正常。我使用的是 iPhone 6s。

于 2017-03-16T12:49:56.570 回答
14

NotificationServiceExtension 的部署目标也可能是一个原因。

就我而言,我在 iOS 12.4 上运行的设备上进行测试,而我的 NotificationServiceExtension 的目标版本是 14.1。我刚刚将我的 NotificationServiceExtension 目标版本更改为 12.4 它有效。

于 2021-05-13T14:37:31.277 回答