ios - I removed the status bar from my iPad app, but now there is a white bar at the bottom that is the same thickness as the status bar -
it seems program moved whole view up, , didn't stretch webview cover bottom.
how can make webview take whole space, status bar isn't taking any? tried manually making webview bigger in storyboard has no effect.
i had same problem in iphone app of mine. try this:
- (void)viewdidlayoutsubviews { self.webview.frame = self.view.bounds; }
Comments
Post a Comment