我想從我從服務器的JSON響應中獲得的URL在我的UIView中播放視頻。如何使用從iOS服務器獲取的URL在UIView中播放視頻
這是我寫的播放視頻的代碼,但沒有任何反應。
NSURL *movieURL = [NSURL URLWithString:objAlbum.strVideoURL];
MPMoviePlayerController *moviePlayerController = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];
[moviePlayerController.view setFrame:self.movieView.bounds];
[self.movieView addSubview:moviePlayerController.view];
// Configure the movie player controller
moviePlayerController.controlStyle = MPMovieControlStyleNone;
[moviePlayerController prepareToPlay];
[moviePlayerController play];
在strVideoURL我得到視頻網址。
如果你硬編碼地址,會發生什麼? – MACMAN
您是否在最後獲得了帶有視頻格式擴展名的絕對URL路徑?就像 - 'http:// mywebserver.com/myvideo.mp4'或者類似的東西 –
你從服務器獲得的URL值是什麼? –