美文网首页
iOS点击按钮播放声音

iOS点击按钮播放声音

作者: NapoleonY | 来源:发表于2018-06-05 14:21 被阅读9次

    概述

    未完待续

    代码

    //播放声音
        NSString *resoucePath = [[NSBundle mainBundle] pathForResource:@"声音文件名" ofType:@"wav"];
        SystemSoundID soundID;
       AudioServicesCreateSystemSoundID((__bridge CFURLRef)[NSURL fileURLWithPath:resoucePath], &soundID);
        AudioServicesPlaySystemSound(soundID);
    

    参考

    1. IOS基础:声音调用
    2. iOS开发系列--音频播放、录音、视频播放、拍照、视频录制
    3. IOS进阶之AudioToolBox.framework

    相关文章

      网友评论

          本文标题:iOS点击按钮播放声音

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