Chris Muench
Chris Muench

Reputation: 18318

Extra whitespace shows when using keyboard in UIWebView

I have a UIWebView that takes up all available space using the following method:

- (void)viewDidLayoutSubviews
{
    //make sure web view takes up all space
    self.webView.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);
}

This works fine, but when the keyboard is accessed, whitespace appears above the keyboard. This does not happen in Safari on the same web page.

Could you give me some ideas on how to fix this? I have no idea why this is happening.

Whitespace

Upvotes: 0

Views: 883

Answers (1)

m-farhan
m-farhan

Reputation: 1426

enter image description here

i have just tested this page on iPad simulator i found no problem also iPhone 3.5 is looking good

i have uiwebview in nib file and attached to outlet

Upvotes: 1

Related Questions