UIWebView - 旋转时调整?
我有一个加载 url 的 UIWebView。在 MobileSafari 中,当手机旋转至横向位置时,该网页将会调整。在我的 UiWebView 中,它只是保持纵向 - 是我需要添加的属性才能允许这种情况发生吗?
干杯!
I have a UIWebView which loads a url. In MobileSafari this webpage will adjust when the handset is rotated to the landscape position. In my UiWebView it just stays in portrait - is the a property I need to add to allow this to occur?
Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要设置
shouldAutoRotateToInterfaceRotation:
方法来响应所需的旋转。我已经对此进行了测试,效果非常好。You need to set your
shouldAutoRotateToInterfaceRotation:
method to respond to the rotations needed. I have tested this and it works perfectly.您的顶级 UIViewController 是否为其视图(以及所有子视图,包括您的 Web 视图)处理旋转(允许它们在 shouldAutorotate 委托中)?
Is your top level UIViewController handling rotations (allowing them in the shouldAutorotate delegate) for its view (and thus for all subviews, including your web view)?