UIWebView 不随多个选项卡应用程序旋转

发布于 2024-10-29 23:33:46 字数 418 浏览 1 评论 0原文

我正在使用 UIWebView 在 iPhone 上显示 PDF 和 Word 文档。我希望它们在设备方向改变时自动旋转。为此,我添加了以下委托方法。但有些奇怪的事情正在发生。当我只有一个包含 UIWebView 的选项卡时,它工作得很好。它可以很好地加载文档并且也可以完美旋转,但是当我添加另一个选项卡时,它不会旋转..!在调试时,我可以看到当我有两个表时,它仅接收 UIDeviceOrientationLandscapeRight 和 UIDeviceOrientationLandscapeLeft 的旋转事件。任何人都可以帮我摆脱这个问题吗?

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { 返回是;

}

谢谢。

I am using UIWebView to display the PDF and Word documents on iPhone. I want them to auto rotate when device orientation changes. For that I have added following delegate method. Something weird is happening though. It works fine when I have I have only one tab which has UIWebView. It loads document fine and also rotate perfectly but when I add another tab, it doesn't rotate..! While debugging I could see that when I have two table, it receives the rotation event only for UIDeviceOrientationLandscapeRight and UIDeviceOrientationLandscapeLeft. Could any one please help me to get rid of this.

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return YES;

}

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何处潇湘 2024-11-05 23:33:46

假设您对选项卡使用选项卡栏控制器,则需要确保所有选项卡上的视图都支持不同的设备方向。尝试实现选项卡栏控制器类中的方法。

Assuming you're using a tab bar controller for the tabs, you need to make sure that the views on all tabs support the different device orientations. Try implementing the methods in the tab bar controller class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文