- 使用AVfundation框架
?- (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent *)event{
NSURL *url = [[NSBundle mainBundle]URLForResource:@"buyao.caf" withExtension:nil];
SystemSoundID soundID;
//創(chuàng)建soundID soundI'D是Int類型
AudioServicesCreateSystemSoundID(CFBridgingRetain(url), &soundID);
//這個是主要的播放的方法
AudioServicesPlaySystemSound(soundID);
}