在我的应用程序中,我在UIWebview中显示视频,视频在模拟器上正常播放,顶部和底部的控件正常工作。但是,在实际的iphone 4.0设备上,顶部的控件 - 完成,滑块移动到特定的时间间隔,放大视频不起作用。底部的控件暂停,前进等工作正常。视频结束后,窗口自动关闭,用户将其发送到上一个屏幕。 下午12:49
- (void)viewDidLoad {
[super viewDidLoad];
webView = [[UIWebView alloc] init];
DouglasAppDelegate *delegate = (DouglasAppDelegate *)[[UIApplication sharedApplication] delegate];
self.video= delegate.videoDetail;
//Create a URL object.
NSURL *url = [NSURL URLWithString:video.mvideoUrl];
//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
//Load the request in the UIWebView.
[webView loadRequest:requestObj];
self.view = webView;
[webView release];
}