我在表格視圖中顯示媒體層次結構時,當我點擊表格視圖中的歌曲時,它使用MPMoviePlayerViewController播放歌曲。但是當我點擊完成按鈕時,聲音停止播放。我做了以下代碼:在後臺播放音頻
NSURL *songUrl=[operationControl getSong:stringId];
mediaPlayerController = [[MPMoviePlayerViewController alloc] initWithContentURL:songUrl];
[self presentModalViewController:mediaPlayerController animated:YES];
[[mediaPlayerController moviePlayer] play];
我想要瀏覽媒體層次結構以及在後臺播放歌曲。如何做呢?
didFinishLaunchingWithOptions:? –
@VXtreme它在你的AppDelegate.m文件中。此外,如果您正在播放音頻,爲什麼您要使用電影播放器? –
我的意思是應用程序:didFinishLaunchingWithOptions::) – selfsx