首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 操作系统 >

下载音频,在IOS装置上播放

2012-06-28 
下载音频,在IOS设备上播放在IOS上可以用MPMoviePlayerViewController实现在线播放音频,但是当网络不理想的

下载音频,在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];}
?

热点排行