是否有旋转Webview示例?

时间:2010-01-12 15:43:46

标签: iphone uiwebview webview

我以为我已经问过这个问题,但是我看不到,所以我会再问一次。

我需要编写一个只包含旋转的webview的应用程序。当用户将手机从纵向移动到横向或反之时,如何旋转文本?

干杯

2 个答案:

答案 0 :(得分:1)

这是自动处理的。在视图控制器中,覆盖方法:

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
    return YES;
}

并确保您的webview的自动调整遮罩设置如下:

webView.autoResizingMask = UIViewAutoresizingFlexibleHeight |   UIViewAutoresizingFlexibleWidth;

答案 1 :(得分:0)

您是否使用UIViewController控制UIWebView?如果是,请覆盖

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation