概述
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"];
}
转载于:https://www.cnblogs.com/CH520/p/9243679.html
最后
以上就是酷酷奇异果为你收集整理的按钮点击播放音效1、引入音频管理文件2、方法抽取3、点击按钮播放音效的全部内容,希望文章能够帮你解决按钮点击播放音效1、引入音频管理文件2、方法抽取3、点击按钮播放音效所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复