按钮点击播放音效

Posted ch520

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按钮点击播放音效相关的知识,希望对你有一定的参考价值。


1、引入音频管理文件

#import <AVFoundation/AVFoundation.h>

2、方法抽取

/************ 播放音效 *****************************/
- (void)playSoundEffect:(NSString *)name withType:(VoiceType)type {
    //播放扫描二维码的声音
    SystemSoundID soundID;
    NSString *strSoundFile = [[NSBundle mainBundle] pathForResource:name ofType:VoiceTypeStringMap[type]];
    AudioservicesCreateSystemSoundID((__bridge CFURLRef)[NSURL fileURLWithPath:strSoundFile],&soundID);
    AudioServicesPlaySystemSound(soundID);
}

3、点击按钮播放音效

/************ 点击开关灯按钮就会调用 *****************************/
- (void)OpenOrClosedLamp:(UIButton *)button {
    // 播放音效
    [self playSoundEffect:@"noticeMusic" withType:@"wav"];
}

以上是关于按钮点击播放音效的主要内容,如果未能解决你的问题,请参考以下文章

同时播放背景音乐和音效

unity的UGUI怎么做到鼠标滑过按钮播放音效

单击按钮时的音频播放问题

在 Xcode 中播放音效

如何播放/停止背景音乐和音效?

使用SoundPool播放音效