我想为我的iOS应用添加自定义提醒声音。我一直在尝试将它添加到我的Xcode项目中,但似乎不起作用。我收到默认提示音而不是自定义提示音。
请原谅我的无知我对声音文件格式知之甚少。如果我使用正确的格式,我会感到困惑。
Apple文档声明我需要使用4种格式中的一种(线性PCM,MA4(IMA / ADPCM),μLaw,aLaw)。
我做了什么
我也尝试过使用afconvert工具进行转换
afconvert test.m4a test.caf -d ima4 -f caff -v
声音文件的持续时间远低于30秒
发送通知后,我会收到默认的提示音,而不是我的自定义提示音。
我尝试了下面提到的2行代码并且似乎没有用,我得到了默认声音
UILocalNotification *localNotif = [[UILocalNotification alloc] init];
localNotif.soundName = @"test.caf";
//or .m4a file
localNotif.soundName = @"test.m4a";
问题:
答案 0 :(得分:2)
我犯的错误