在我的应用程序中,我有一个 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,