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"];

转自:
http://www.jianshu.com/p/87e8cbdb46c9

[音频格式] http://www.jianshu.com/p/82f1573adbe0

上一篇下一篇

猜你喜欢

热点阅读