播发音频 AVAudioPlayer(实例)

播放音频 AVAudioPlayer(实例)1.?AVFoundation?Build Phases Link Binary With Libraies + AVFou

播放音频 AVAudioPlayer(实例)

1.?AVFoundation

?

Build Phases => Link Binary With Libraies => + => AVFoundation.framework => add

?

firstviewcontroller.h

?

test.mp3 拖放到 Supporting Files 文件夹。

?

播放,暂停和停止

- (IBAction)toplay:(id)sender{    CFBundleRef mainBundle = CFBundleGetMainBundle();    CFURLRef soundFileURLRef;    soundFileURLRef = CFBundleCopyResourceURL(mainBundle, (CFStringRef) @"sound1", CFSTR ("wav"), NULL);        UInt32 soundID;    AudioServicesCreateSystemSoundID(soundFileURLRef, &soundID);    AudioServicesPlaySystemSound(soundID);}
?

视频:

http://www.youtube.com/watch?v=lSJhYx28Krg&feature=youtu.be

?

?

?

?

?