音效的播放_01

2016-12-20  本文已影响0人  KAKA_move

- 使用AVfundation框架

 - (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent *)event{

NSURL *url = [[NSBundle mainBundle]URLForResource:@"buyao.caf" withExtension:nil];

SystemSoundID soundID;

//创建soundID soundI'D是Int类型

AudioServicesCreateSystemSoundID(CFBridgingRetain(url), &soundID);

//这个是主要的播放的方法

AudioServicesPlaySystemSound(soundID);

}

上一篇下一篇

猜你喜欢

热点阅读