早上好!顯示前操作推送通知(APNS)
我有一個簡單的問題:我可以在顯示客戶端之前操作UIUserNotificationType.alert消息嗎?
例如,我可以在消息的索引0處添加「1:」嗎?
這只是一個例子,我想在向他們展示客戶端之前解密消息。有沒有什麼辦法做到這一點在android中?
到現在爲止我只有這個片段 - 但是,只有註冊通知的類型,我不能改變的警告消息:
let notificationTypes: UIUserNotificationType = [UIUserNotificationType.alert, UIUserNotificationType.badge, UIUserNotificationType.sound]
let pushNotificationSettings = UIUserNotificationSettings(types: notificationTypes, categories: nil)
application.registerUserNotificationSettings(pushNotificationSettings)
application.registerForRemoteNotifications()
謝謝!
不可能使用APNS – iMHitesh
感謝您的回答! – Waldi