iOS自定义通知声音(本地&远程)
2017-09-22 本文已影响1443人
Da雪山
主要步骤:
远程通知:
1.将自定义的声音文件拖入工程(音频文件格式是 aiff,wav,caf)
2.后台 payload中加入自定义声音文件名 sound = "mysound.caf"
本地通知:
// 通知的提示声音,这里用的默认的声音
//content.sound = [UNNotificationSound defaultSound];
//自定义声音
content.sound = [UNNotificationSound soundNamed:@"6414.mp3"];