1
如何使用Extended Audio File Services: ExtAudioFileRead
對音頻文件執行同步,順序讀取操作。擴展音頻文件服務:ExtAudioFileRead
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"theme"
ofType:@"mp3"];
NSURL *fileURL = [[NSURL alloc] initFileURLWithPath:filePath];
audioPlayer = [[AVAudioPlayer alloc]
initWithContentsOfURL:fileURL error:nil];
[fileURL release];
我如何對主題音頻文件執行同步,順序讀取操作。目前有AVFoundation.Framework
,我應該加CoreAudio.Framework
了。