PhoneGap 上的 childBrowser 仅纵向显示
Posted
技术标签:
【中文标题】PhoneGap 上的 childBrowser 仅纵向显示【英文标题】:childBrowser on PhoneGap only shows in portrait 【发布时间】:2011-10-19 06:13:03 【问题描述】:我正在为 ios 5.0、XCODE 4.2、phonegap 1.1.0 使用 childbrowser,我只能在纵向模式下将其拉起。我的应用程序支持所有 4 个视图,但是当我选择一个时,我的浏览器仅处于纵向模式。我确实收到此错误消息:
视图控制器从 -shouldAutorotateToInterfaceOrientation: 返回 NO,用于所有界面方向。它应该至少支持一个方向。
但我对 xcode 知之甚少 - 所以我无法解决这个问题 :(
帮助
【问题讨论】:
【参考方案1】:我也有同样的问题,如果你查看 ChildBrowserViewController 有一个名为 shouldAutorotateToInterfaceOrientation 的函数。
前几行查看支持的方向配置,但仅当您有多个方向设置时它才会旋转。我只有横向设置,所以它没有这样做。
如果你将 autoRotate 设置为 YES 或注释掉 if 块,它会检查当前方向是否支持,如果支持则旋转到它。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation
//BOOL autoRotate = [self.supportedOrientations count] > 1; // autorotate if only more than 1 orientation supported
//if (autoRotate)
//
if ([self.supportedOrientations containsObject:
[NSNumber numberWithInt:interfaceOrientation]])
return YES;
//
return NO;
【讨论】:
以上是关于PhoneGap 上的 childBrowser 仅纵向显示的主要内容,如果未能解决你的问题,请参考以下文章
使用 android、phonegap、childBrowser 登录 facebook
Phonegap: BarcodeScanner & Childbrowser 插件
PhoneGap/iOS,从 .shouldStartLoadWithRequest() 打开 ChildBrowser?
Phonegap 1.5 (Cordova) ios childbrowser 根本无法打开