0

我有一个选项卡应用程序,它在一个选项卡中显示 Web 浏览器。当您旋转视图时,一切正常,但是当您切换到另一个选项卡然后以横向返回该选项卡时,视图 webview、搜索栏和工具栏将返回纵向布局。这是我使用的代码,但它没有t似乎工作:

#define isPortrait [[UIApplication sharedApplication] statusBarOrientation] ==     UIInterfaceOrientationPortrait || [[UIApplication sharedApplication] statusBarOrientation] == UIInterfaceOrientationPortraitUpsideDown

if(isPortrait)
{
    browser.frame = CGRectMake(0, 68, 320, 408);
    addressBar.frame = CGRectMake(0, 23, 320, 44);
    toolBar.frame = CGRectMake(0, 478, 320, 44);
}
else
{
    browser.frame = CGRectMake(0, 68, 320, 408);
    addressBar.frame = CGRectMake(0, 23, 320, 44);
    toolBar.frame = CGRectMake(0, 478, 320, 44);
}

这一切都在我的 viewdidload 方法中。

4

1 回答 1

0
-(void)viewDidAppear:(BOOL)animated
{
    if (UIInterfaceOrientationIsLandscape([UIDevice currentDevice].orientation)) {
        browser.frame = CGRectMake(0, 68, 568, 160);
        addressBar.frame = CGRectMake(0, 23, 568, 44);
        toolBar.frame = CGRectMake(0, 227, 568, 44);
    }
}
于 2013-07-01T03:20:03.630 回答