关于UILocalNotification 的soundName问题(通知的自定义声音问题)

最近写闹钟项目.设置了通知的soundName,但还是提醒的是系统声音.

1.声音文件必须在项目的mainBundle中.将文件拖入项目的时候默认没有 添加到target中.关于UILocalNotification 的soundName问题(通知的自定义声音问题)_第1张图片

所以要勾选add target.在播放的时候可以先打印一下文件路径看看存不存在

 NSString *path = [[NSBundle mainBundle]pathForResource:@"sound" ofType:@"m4a"];
        NSLog(@"path-------------%@",path);
        self.notify.soundName = @"sound.m4a";

2. 音频的类型.iOS 的通知只支持默认的四种 : Linear PCM, MA4 (IMA/ADPCM), µLaw, aLaw(其他格式的不能播放)

3. 音频不能超过30秒.超过30秒回播放系统的声音


你可能感兴趣的:(关于UILocalNotification 的soundName问题(通知的自定义声音问题))