ios presentViewController 后 vc里 状态栏 是灰色的

新手上路,请多包涵

我用presentViewController 加入了一个vc
但是 状态栏是灰色的,不知道为啥,如图
图片描述

我在网上找了个方法,,但是不起作用

WebViewController *vc = [self.storyboard instantiateViewControllerWithIdentifier:@"wbView"];
vc.modalPresentationStyle = UIModalPresentationOverFullScreen;
vc.url=urlString;
[self presentViewController:vc animated:true completion:nil];

阅读 3.9k
1 个回答

问题就在 webView 了,那个灰色是 UIWebView 默认的底色。然后你是全屏的,UIWebView 自动加了个 topInset,防止被状态栏挡住。
解决方法:

  1. 设置你的 VC.automaticallyAdjustsScrollViewInsets = NO; VC.edgesForExtendedLayout = UIRectEdgeAll
  2. 或者,你应该被 VC 包在 UINavigationController 中
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题