Невозможно прочитать уведомление FCM Userdata, я пытаюсь это-
let userInfo = response.notification.request.content.userInfo
if let jsonResult = userInfo as? Dictionary<String, AnyObject> //**Getting error on this line**
{
if let notifyType =
jsonResult["gcm.notification.notification_type"] as? String ?? ""
{
print(notifyType)
}
}