0

在我的应用程序中,我有一个 UIWebview,所有活动都在其中进行。该应用程序在 ios6 上完美运行,但在 iOS 7 上,我的 UIwebview 内容与状态栏发生冲突。

有没有办法可以为我的 UIWindow 设置视图以正确显示它。

if([[[UIDevice currentDevice] systemVersion] integerValue] >= 7) {

            if (self.window.rootViewController.view.frame.origin.y <=0) {
                screenBounds = CGRectMake(0, 20, self.window.bounds.size.width, self.window.bounds.size.height-20);
            }
        }
self.window.rootViewController = self.viewController;

Thanks,
4

1 回答 1

0

尝试:

if ([self respondsToSelector:@selector(edgesForExtendedLayout)])
        self.edgesForExtendedLayout = UIRectEdgeNone;

在视图控制器的 viewDidLoad 方法中。

于 2013-10-18T10:47:12.697 回答