UNMutableNotificationContent の userinfo で cutom オブジェクトを使用したいのですが、うまくいきません。カスタム オブジェクトを userinfo に配置すると、通知が発生しません。
このコードを使用すると、通知が発生します。
let content = UNMutableNotificationContent()
content.title = "title"
content.body = "body"
content.categoryIdentifier = "alarmNotificationCategory"
content.sound = UNNotificationSound.default()
content.userInfo = ["myKey": "myValue"] as [String : Any]
let request = UNNotificationRequest(identifier: "alarmNotification", content: content, trigger: nil)
UNUserNotificationCenter.current().add(request) { error in
UNUserNotificationCenter.current().delegate = self
if error != nil {
print(error!)
}
}
次の場合、エラーは発生しませんが、通知は発生しません。
let content = UNMutableNotificationContent()
content.title = "title"
content.body = "body"
content.categoryIdentifier = "alarmNotificationCategory"
content.sound = UNNotificationSound.default()
content.userInfo = ["myKey": TestClass(progress: 2)] as [String : Any]
let request = UNNotificationRequest(identifier: "alarmNotification", content: content, trigger: nil)
UNUserNotificationCenter.current().add(request) { error in
UNUserNotificationCenter.current().delegate = self
if error != nil {
print(error!)
}
}
TestClass はカスタム クラスです。定義は次のとおりです。
class TestClass: NSObject, NSSecureCoding {
public var progress: Float = 0
required override public init() {
super.init()
}
public init(progress: Float) {
self.progress = progress
}
public required convenience init?(coder aDecoder: NSCoder) {
self.init()
progress = aDecoder.decodeObject(forKey: "progress") as! Float
}
public func encode(with aCoder: NSCoder) {
aCoder.encode(progress, forKey: "progress")
}
public static var supportsSecureCoding: Bool {
get {
return true
}
}
}
何か案が?