启动后是否可以将其他数据放入APN有效负载中并在应用程序中读取?

最佳答案

是的,这是JSON字典。

{
"aps":
    {"alert":"test",
    "badge":1,
    "sound":"default"
    },
"Value1":info,
"Value2":3,
  "myDict":
   {
     "key1":"val1",
     "key2":val2
   }
}


并访问:

- (void)receivedRemoteNotification:(NSDictionary *)userInfo {

NSDictionnary *myDict = [userInfo valueForKeyPath:@"aps.myDict"];

}

关于ios - Apple Push Notifications-将数据放入应用程序,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5310292/

10-11 19:48