答えて

-1

In Appdelegate。以下の関数を実装し、userInfoで取得できます。

func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject], 
        fetchCompletionHandler completionHandler: (UIBackgroundFetchResult) -> Void) { 
      // Access userInfo 
      let aps = userInfo["aps"] as? NSDictionary 
      if let aps = aps { 
       let alert = aps["alert"] as! NSDictionary 
       let body = alert["body"] as! String 
       let title = alert["title"] as! String      
      } 

} 
1

AndroidのgetFrom()の機能には、iOSに対応する機能がありません。

回避策として、dataペイロードにメッセージを送信するトピック名のカスタムキーと値のペアを追加できます。

これは、answerに記載されている推奨される回避策です。

関連する問題