码迷,mamicode.com
首页 > 移动开发 > 详细

IOS 音效

时间:2017-06-18 22:46:55      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:nsbundle   callback   nbu   调用   creat   add   div   文件   creates   

技术分享
//
//  ViewController.m
//  CX 音效
//
//  Created by ma c on 16/4/15.
//  Copyright ? 2016年 bjsxt. All rights reserved.
//

#import "ViewController.h"
#import <AVFoundation/AVFoundation.h>
@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];

}
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    //获取音效文件的全路径
    NSURL * url = [[NSBundle mainBundle]URLForResource:@"cx.wav" withExtension:nil];
    //加载音效文件,创建音效ID(SoundID,一个ID对应一个音效文件)
    SystemSoundID soundID = 0;
    AudioServicesCreateSystemSoundID((__bridge CFURLRef)url, &soundID);
    //播放音效文件
    //下面的两个函数都可以用来播放音效文件,第一个函数伴随有震动效果
    AudioServicesPlayAlertSound(soundID);
    //AudioServicesPlaySystemSound(soundID)
    //把需要销毁的音效文件的ID传递给它既可销毁
    //AudioServicesDisposeSystemSoundID(soundID);
    //如果需要在播放完之后执行某些操作,可以调用如下方法注册一个播放完成回调函数
    AudioServicesAddSystemSoundCompletion(soundID, NULL, NULL, soundCompleteCallback, NULL);
}
void soundCompleteCallback(SystemSoundID soundID,void * clientData){
    NSLog(@"播放完成...");
}
@end
技术分享

IOS 音效

标签:nsbundle   callback   nbu   调用   creat   add   div   文件   creates   

原文地址:http://www.cnblogs.com/wuyuxin/p/7045628.html

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