iOS5: Exception on UIWebView in modal UIViewController playing Youtube video(iOS5:在模态 UIViewController 中播放 Youtube 视频时 UIWebView 出现异常)
问题描述
更新:iOS 6 beta 1 上不再出现
UPDATE: No longer occurs on iOS 6 beta 1
我目前正在使用新的 iOS 5 SDK 调整现有的 iOS 4 应用程序.在读取 Youtube 视频的模态视图控制器中显示 UIWebView 时,我发现了一个新的崩溃.
I am currently working on adapting an existing iOS 4 application with the new iOS 5 SDK. I found a new crash when presenting a UIWebView in a modal view controller that reads a Youtube video.
开始阅读视频很好,但是当我尝试将其设置为全屏时,出现以下异常:
Starting to read the video is fine, but when I try to set it in full screen, I get the following exception :
Exception: UIViewControllerHierarchyInconsistency,
child view controller:<UIViewController: 0x6aef180>
should have parent view controller:<WebViewController: 0x6a706c0>
but requested parent is:<MPInlineVideoViewController: 0x6ae5d40>
这是我在主视图控制器中实例化和呈现模态视图控制器的方式:
Here is how I instanciate and present my modal view controller in my main view controller :
- (IBAction)buttonReleased:(id)sender
{
WebViewController *webVC = [[WebViewController alloc] initWithNibName:@"WebViewController" bundle:[NSBundle mainBundle]];
webVC.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
webVC.modalPresentationStyle = UIModalPresentationPageSheet;
[self presentModalViewController:webVC animated:YES];
}
我使用 UIModalPresentationPageSheet 作为 modalPresentationStyle,当我将此值设置为 UIModalPresentationFullScreen 时,不再出现错误.
I use the UIModalPresentationPageSheet as modalPresentationStyle, when I set this value to UIModalPresentationFullScreen, the error no longer occurs.
在我的模态 WebViewController 中,这是我加载 Youtube 视频的方式:
In my modal WebViewController, here is how I load my Youtube video :
- (void)viewDidLoad
{
[super viewDidLoad];
[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.youtube.com/watch?v=bDlm3eLRut0"]]];
}
对这个问题有什么想法吗?如果需要,我可以提供一个完整的示例代码来隔离此崩溃.
Any ideas on this problem ? I can provide a full sample code that isolates this crash if needed.
谢谢!
推荐答案
我们通过基本实现我们自己的模态视图转换解决了这个问题.这实际上很容易做到.我在大约 4 小时内完成了它.
We resolved this by basically implementing our own modal view transitions. It was actually pretty easy to do; I built it in about 4 hours.
如果您以模态方式全屏显示,也可以避免崩溃.表单(表单或页面表单)是导致崩溃的原因.
You can also avoid the crash if you are presenting it modally full screen. Sheets, either form sheets or page sheets, are the causes of the crash.
这篇关于iOS5:在模态 UIViewController 中播放 Youtube 视频时 UIWebView 出现异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:iOS5:在模态 UIViewController 中播放 Youtube 视频时 U
基础教程推荐
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
