美文网首页
iOS 播放系统提示音

iOS 播放系统提示音

作者: 江河_ios | 来源:发表于2021-10-12 17:39 被阅读0次
SystemSoundID soundID;

NSString *bundlePath = [[ NSBundle mainBundle] pathForResource:@"wav" ofType:@"mp4"];
NSURL *url =[NSURL fileURLWithPath:bundlePath];
//创建系统音频
OSStatus error = AudioServicesCreateSystemSoundID((__bridge CFURLRef _Nonnull)(url), & soundID);
if (error == 0) {
//播放 系统声音id从1000开始
//振动vibrate
AudioServicesPlayAlertSound(kSystemSoundID_Vibrate);
AudioServicesPlaySystemSound(soundID);
}

相关文章

网友评论

      本文标题:iOS 播放系统提示音

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