我正在使用推送通知的iOS应用。我跟着这个raywenderlich tutorial。
我在应用运行时收到通知,并调用didReceiveRemoteNotification
方法。
但是,如果应用程序正在运行且终止,则通知不会出现在通知中心或外观屏幕上。
这是有效负载对象
payload =
{
alert = "Title goes here";
myid = 304;
xxxxxx = 51;
sound = default;
};
答案 0 :(得分:1)
警报和声音必须位于有效负载内的aps
对象中:
{
"aps":
{
"alert": "blah",
"sound": "default",
},
"myid": 12345
}