推送通知声音不起作用

时间:2014-12-02 09:51:47

标签: ios objective-c xcode push-notification

我在我的应用程序中使用推送通知。当通知到来时,我没有收到通知的通知声音,而且在iPad设置中我打开了iPad中的所有通知按钮,即使通知声音没有到来。

{
    alert = "Testing commands@2014-12-01T12:16:26",
    sound = "default"
}

我正在收到这样的声音文件。但通知声音没有到来。

我是PushNotification概念的新手。任何人都可以帮助解决这个问题......

1 个答案:

答案 0 :(得分:2)

您应该使用JSON格式发送封装在aps字典中的通知,例如:

{

    "aps" : {

        "alert" : "Your message.",

        "badge" : 0,

        "sound" : "default"

    }
}

完整参考: https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/ApplePushService.html