我的应用程序中有一个UIWebView,可以在iOS 4中正确播放视频,但不能在iOS 5中播放。这些是我的视频链接。
1)http://myserverpath/mov015.3gp
NSURL *url = [NSURL URLWithString:self.selectedVideoUrl];
NSURLRequest *req = [[NSURLRequest alloc] initWithURL:url];
[webView loadRequest:req];
我也试过了,但它也没用。
player =[[MPMoviePlayerController alloc] initWithContentURL: url];
[[player view] setFrame: [self.view bounds]];
[self.view addSubview: [player view]];
[player play];
请帮帮我。
答案 0 :(得分:0)