我想播放存储在服务器中的 mp3 文件 例如:- mp3 链接
我已经尝试了其他相关的答案,但我没有得到输出。谁能告诉我如何播放存储在网络上的 mp3。
我想播放存储在服务器中的 mp3 文件 例如:- mp3 链接
我已经尝试了其他相关的答案,但我没有得到输出。谁能告诉我如何播放存储在网络上的 mp3。
Apple 的 AVPlayer 文档说明如下: AVPlayerplayer 与本地和远程媒体文件同样适用
Apple 的 AVAudioPlayer 文档说明如下: 使用此类进行音频播放,除非您正在播放从网络流中捕获的音频
-(IBAction)playTapped {
AVPlayer *player = [[AVPlayer playerWithURL:[NSURL URLWithString:@"http://www.mp3.com/mp3file.mp3"]] retain];
[player play];
}