我有一个包含 mp3 的 URL 列表,我想流式传输并保存它们,而且我想以给定的顺序播放它们。
问问题
195 次
1 回答
0
AVPlayerItem *item=[AVPlayerItem playerItemWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"YOUR URL"]]];
AVPlayer *audioPlayer = [AVPlayer playerWithPlayerItem:songItem];
重要提示:您必须仅在接口(.h 文件)中声明 AVPlayer *audioPlayer,然后您可以使用类似 audioPlayer = [AVPlayer playerWithPlayerItem:songItem]; [音频播放器播放];
快乐的编码...
于 2013-09-23T12:43:14.757 回答