我有一个 UNNotificationPresentationOptions 类型的 completionHandler ,现在我想返回字符串值,而不是.alert。
我想在通知中显示阿拉伯文字,所以我想在completeHandler中设置 msg 值
@available(iOS 10, *)
extension AppDelegate : UNUserNotificationCenterDelegate {
// Receive displayed notifications for iOS 10 devices.
func userNotificationCenter(_ center: UNUserNotificationCenter,
willPresent notification: UNNotification,
withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
let userInfo = notification.request.content.userInfo
print(userInfo)
let userInfoa = notification.request.content
let sd = userInfoa.title
if let jsonResult = userInfo as? Dictionary<String, AnyObject> {
var msg = ""
if let aps_Data = userInfo as? Dictionary<String, AnyObject> {
if let ar_message = aps_Data["gcm.notification.body_ar"] {
print(ar_message)
msg = ar_message as! String
}
}
let content:UNNotificationPresentationOptions = msg
completionHandler([content])
//completionHandler([.alert]) . *I dont want use .alert
}
}
}
答案 0 :(得分:2)
要声明
@available(iOS 10.0, *)
public struct UNNotificationPresentationOptions : OptionSet {
public init(rawValue: UInt)
public static var badge: UNNotificationPresentationOptions { get }
public static var sound: UNNotificationPresentationOptions { get }
public static var alert: UNNotificationPresentationOptions { get }
}
这些是.alert /.sound/.badge权限类型,您无法将委托方法签名更改为所需的名称,主要目的是返回系统将为即将到来的通知触发的权限
//
您可以使用通知服务&&内容扩展
在此处执行您的编辑
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)
}
}