-1

我想播放存储在服务器中的 mp3 文件 例如:- mp3 链接

我已经尝试了其他相关的答案,但我没有得到输出。谁能告诉我如何播放存储在网络上的 mp3。

4

1 回答 1

2

Apple 的 AVPlayer 文档说明如下: AVPlayerplayer 与本地和远程媒体文件同样适用

Apple 的 AVAudioPlayer 文档说明如下: 使用此类进行音频播放,除非您正在播放从网络流中捕获的音频

  -(IBAction)playTapped {
        AVPlayer *player = [[AVPlayer playerWithURL:[NSURL  URLWithString:@"http://www.mp3.com/mp3file.mp3"]] retain];
        [player play];

     }
于 2012-06-13T09:09:10.077 回答