iOS 5 UIWebview没有播放视频?

时间:2011-11-17 10:06:50

标签: iphone ios uiwebview ios5 mpmovieplayercontroller

我的应用程序中有一个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];

请帮帮我。

1 个答案:

答案 0 :(得分:0)

ios 5 Web视图不支持.3gp扩展名文件。我创建了另一个扩展名为.mov的视频,并且可以正常工作。