下载音频,在IOS设备上播放
在IOS上可以用MPMoviePlayerViewController实现在线播放音频,但是当网络不理想的情况下客户体验总不是太好,所以采用了,先下载下来,然后播放。
?
1.下载音频
- (void) playQuestionSound:(NSURL *)soundURL { //播放问题音频 [[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error: nil]; [[AVAudioSession sharedInstance] setActive: YES error: nil]; NSURL *fileURL = [NSURL fileURLWithPath:self.savePath]; player = [[AVAudioPlayer alloc] initWithContentsOfURL: fileURL error: nil]; [fileURL release]; [player setVolume:15.0]; [player play];}?