web-dev-qa-db-ja.com

Swiftリモート通知のuserInfoを読み取ります

次のようなリモート通知を受け取ったときにAlertViewを開く関数を実装しました。

func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject]){
        var notifiAlert = UIAlertView()
        var NotificationMessage : AnyObject? =  userInfo["alert"]
        notifiAlert.title = "TITLE"
        notifiAlert.message = NotificationMessage as? String
        notifiAlert.addButtonWithTitle("OK")
        notifiAlert.show()
}

ただし、NotificationMessageは常にnilです。

私のjsonペイロードは次のようになります。

{"aps":{"alert":"Testmessage","badge":"1"}}

Xcode 6を使用していますSwiftおよびiOS8用に開発中です。現在何時間も検索しましたが、有用な情報が見つかりませんでした。通知は完全に機能します。私の問題は、userInfoからデータを取得できないことです。

47
3k1

userInfo辞書のルートレベルのアイテムは、"aps"ではなく"alert"です。

以下を試してください:

if let aps = userInfo["aps"] as? NSDictionary {
    if let alert = aps["alert"] as? NSDictionary {
        if let message = alert["message"] as? NSString {
           //Do stuff
        }
    } else if let alert = aps["alert"] as? NSString {
        //Do stuff
    }
}

Push Notification Documentation を参照してください

102
Craig Stanford

私にとっては、 Accengage からメッセージを送信すると、次のコードが機能します-

private func extractMessage(fromPushNotificationUserInfo userInfo:[NSObject: AnyObject]) -> String? {
    var message: String?
    if let aps = userInfo["aps"] as? NSDictionary {
        if let alert = aps["alert"] as? NSDictionary {
            if let alertMessage = alert["body"] as? String {
                message = alertMessage              
            }
        }
    }
    return message
}

Craing Stanfordの答えとの唯一の違いは、keyであるalertインスタンスからメッセージを抽出するために使用したbodyです。詳細については、以下を参照してください-

if let alertMessage = alert["message"] as? NSString

if let alertMessage = alert["body"] as? String
4
BLC

メソッド(Swift 4):

func extractUserInfo(userInfo: [AnyHashable : Any]) -> (title: String, body: String) {
    var info = (title: "", body: "")
    guard let aps = userInfo["aps"] as? [String: Any] else { return info }
    guard let alert = aps["alert"] as? [String: Any] else { return info }
    let title = alert["title"] as? String ?? ""
    let body = alert["body"] as? String ?? ""
    info = (title: title, body: body)
    return info
}

使用法:

let info = self.extractUserInfo(userInfo: userInfo)
print(info.title)
print(info.body)
4
Ming Chu

私はAPNs Providerとjsonペイロードを次のように使用します

_{
  "aps" : {
    "alert" : {
      "title" : "I am title",
      "body" : "message body."
    },
  "sound" : "default",
  "badge" : 1
  }
}
_

プロバイダーにより、iOSがNSDictionaryのような添え字なしで、Dictionaryオブジェクトに変換するJSON定義辞書として作成されますが、value(forKey:)を使用できます

here からの参照

これはSwift 4

_func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
    guard application.applicationState == .active else { return }
    guard let alertDict = ((userInfo["aps"] as? NSDictionary)?.value(forKey: "alert")) as? NSDictionary,
        let title = alertDict["title"] as? String,
        let body = alertDict["body"] as? String
        else { return }
    let alertController = UIAlertController(title: title, message: body, preferredStyle: .alert)
    let okAct = UIAlertAction(title: "Ok", style: .default, handler: nil)
    alertController.addAction(okAct)
    self.window?.rootViewController?.present(alertController, animated: true, completion: nil)
    completionHandler(UIBackgroundFetchResult.noData)
}
_
0
Joshpy

アプリがアクティブ状態のときにアラートが表示されるはずです。状態がアクティブかどうかを確認してください。

func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
    if application.applicationState == .active {
      if let aps = userInfo["aps"] as? NSDictionary {
        if let alertMessage = aps["alert"] as? String {
          let alert = UIAlertController(title: "Notification", message: alertMessage, preferredStyle: UIAlertControllerStyle.alert)
          let action = UIAlertAction(title: "Ok", style: .default, handler: nil)
          alert.addAction(action)
          self.window?.rootViewController?.present(alert, animated: true, completion: nil)
        }
      }
    }
    completionHandler(.newData)
  }

ユーザーがメッセージを必要とする場合、これからアラートメッセージを取得できます。

0
jaiswal Rajan