现在 4.0 是公开的,我可以编辑这个问题并再次询问。此代码适用于 3.2 和任何以前的版本,但在 4.0 中,我收到一个 alertView 说“无法播放这部电影”。
伊瓦网络视图
//in viewDidLoad
self.webView = [[UIWebView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
webView.scalesPageToFit = YES;
webView.delegate = self;
// in tableView didSelectRowAtIndexPath
// url contains a video from web
NSURL *url = [NSURL URLWithString:@"http://www.somevalid.td/validmovie.mp4"];
[webView loadRequest:[NSURLRequest requestWithURL:url]];
在日志中显示“设置电影路径(空)”