Я получаю строковый тип из удаленного уведомления, я хочу показать сообщение для каждого полученного типа, когда приложение закрыто или устройство разблокировано. Это моя попытка
let dict = userInfo["aps"] as! NSDictionary
let message = dict["alert"]
let type = userInfo[AnyHashable("type")] as! String
print(type)
let notification = UILocalNotification()
if type == "501 " {
notification.alertBody = "Оцените водителя"
notification.alertTitle = "Оцените наш сервис"
notification.fireDate = Date(timeIntervalSinceNow: 1)
UIApplication.shared.presentLocalNotificationNow(notification)
}
print("message")
print(message!)