我很努力地播放視頻,這是一個服務器上的視頻文件的網址。我有一個從Web服務中顯示網址的視圖。當我點擊網址(包含在表格單元格中)時,我希望在播放視頻的電影播放器上出現新的視圖。我已經嘗試MPMoviePlayerViewController
和MPMoviePlayerController
以及兩者的各種組合,但我無法在模擬器上播放視頻。目前我沒有設備,所以請在回答時考慮模擬器和設備。目前我使用:使用網址播放視頻ios 6
NSURL *url = [NSURL fileURLWithPath:filePath];
self.player= [[ MPMoviePlayerViewController alloc] initWithContentURL:url];
//self.player.navigationController.navigationBar.hidden = YES;
[self.player.moviePlayer prepareToPlay];
//self.player.moviePlayer.scalingMode = MPMovieScalingModeAspectFit;
self.player.moviePlayer.controlStyle = MPMovieControlStyleNone;
self.player.moviePlayer.movieSourceType = MPMovieSourceTypeFile;
self.player.moviePlayer.fullscreen = NO;
[self presentModalViewController:self.player animated:NO];
[self.player.moviePlayer play];
filepath
是包含視頻網址nsstring
。
不working..still停留在載入中... – user1845209
我更新我的答案,你看我是什麼做&然後做出改變acc。你需要... – Vishal