如何使用调用supportedInterfaceOrientations更新更新UIViewController并更新轮换

时间:2014-10-27 15:44:03

标签: uiviewcontroller rotation uiinterfaceorientation

我有问题。我将UIViewContoller显示为模态,UIViewContoller显示UIWebView。这个UIWebView应该显示两个不同的html页面。一页的大小为1024 * 768,另一页的大小为768 * 1024。我需要显示第一页然后第二页。但我无法做到。

实施例

- (NSUInteger)supportedInterfaceOrientations {
    if (self.isPortrait) {
        return UIInterfaceOrientationMaskPortrait;
    } else {
        return UIInterfaceOrientationMaskLandscape;
    }
}

首先需要一幅肖像,然后是风景画。但我不知道如何在加载另一个html页面时让UIViewController翻身。

用户可以转动iPad然后调用supportedInterfaceOrientations,第二页开始正常显示。但是我不满意,我可能会被迫重新加载他称之为UiViewController方法的整个supportedInterfaceOrientations

谢谢

0 个答案:

没有答案