iOS 推送通知自定义声音是否重复?

iOS Push Notification custom sound repeat?

我正在处理推送通知。我已经为推送通知实现了自定义声音。
如果推送通知自定义声音只有 5 秒长,那么我可以重复它直到达到最大声音限制(30 秒)吗?

例如:
我可以重复播放一个通知的声音 6 次吗?

JSON 有效载荷是:

array(
    'alert' => $message,
    'sound' => 'blackberry_3.mp3'
);

不能直接让声音重复。
您必须再次发送通知才能再次触发声音。

看看这个问题,和你的很相似:
apple push notification with sound buzzing at regular interval