美文网首页
iOS自定义通知声音(本地&远程)

iOS自定义通知声音(本地&远程)

作者: Da雪山 | 来源:发表于2017-09-22 21:18 被阅读1443次

    官方文档

    主要步骤:

    远程通知:
    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

    相关文章

      网友评论

          本文标题:iOS自定义通知声音(本地&远程)

          本文链接:https://www.haomeiwen.com/subject/stcqextx.html