码迷,mamicode.com
首页 > 其他好文 > 详细

按钮点击播放音效

时间:2018-07-01 14:56:36      阅读:608      评论:0      收藏:0      [点我收藏+]

标签:声音   点击   voice   music   管理   文件   sel   types   ati   


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"];
}

按钮点击播放音效

标签:声音   点击   voice   music   管理   文件   sel   types   ati   

原文地址:https://www.cnblogs.com/CH520/p/9243679.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!