我正在使用它从服务器MPMoviePlayerViewController
播放.mp3
文件但无法正常工作。这是我正在使用的代码。
NSString *path = @"http://myurl/music.mp3";
MPMoviePlayerViewController *mpviewController = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL URLWithString:path]];
mpviewController.moviePlayer.movieSourceType = MPMovieSourceTypeStreaming;
[self presentModalViewController:mpviewController animated:YES];
[[mpviewController moviePlayer] play];
音频播放 3 或 5 秒后自动停止。无法弄清楚是什么问题。你的建议会有很大帮助。
谢谢你。