使用 "pre-defined" iOS 推送通知声音

Using "pre-defined" iOS push notification sound

我希望在客户端收到推送消息时播放常见的 iOS 推送通知声音。在另一个项目中,我使用了自定义声音,我将其添加到字典中,如下所示:

    NSString *sound = [NSString stringWithFormat:@"boing.aif"];
    NSDictionary *pushMsg = @{ @"aps" : @{ @"alert" : content, @"sound" : sound } };  

我在 didReceiveRemoteNotification: 中调用了播放声音的方法。它运作良好,但我不知道如何使用系统声音来做到这一点。我是否需要在 didReceiveRemoteNotification: 中调用某些内容或向字典中的 sound 键添加特定值?

您需要为有效负载中的 sound 密钥设置 default

"sound" : "default"