4
movieURL = [NSURL URLWithString:@"http://122.165.71.249:6060/test/music/killbill.mp3"];
// Setup the player
moviePlayer = [[MPMoviePlayerViewController alloc] initWithContentURL:movieURL];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(moviePlayBackDidFinish:)
name:MPMoviePlayerPlaybackDidFinishNotification
object:nil];
[self presentMoviePlayerViewControllerAnimated:moviePlayer];
我正在使用此代碼播放在線連接,但我希望脫機播放視頻網址鏈接。如何將視頻緩存爲離線播放?
我解決了這個問題,我將mp3文件保存到文檔目錄路徑中,謝謝你的回覆 –