我用presentViewController 加入了一个vc
但是 状态栏是灰色的,不知道为啥,如图
我在网上找了个方法,,但是不起作用
WebViewController *vc = [self.storyboard instantiateViewControllerWithIdentifier:@"wbView"];
vc.modalPresentationStyle = UIModalPresentationOverFullScreen;
vc.url=urlString;
[self presentViewController:vc animated:true completion:nil];
问题就在
webView
了,那个灰色是UIWebView
默认的底色。然后你是全屏的,UIWebView
自动加了个 topInset,防止被状态栏挡住。解决方法:
VC.automaticallyAdjustsScrollViewInsets = NO; VC.edgesForExtendedLayout = UIRectEdgeAll