次のようなリモート通知を受け取ったときに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からデータを取得できないことです。
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 を参照してください
私にとっては、 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
メソッド(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)
私は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)
}
_
アプリがアクティブ状態のときにアラートが表示されるはずです。状態がアクティブかどうかを確認してください。
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)
}
ユーザーがメッセージを必要とする場合、これからアラートメッセージを取得できます。