Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My app has 5 tabs with navigation controllers in each.

In one of my tabs I use the navigation controllers default toolbar.

And when my web view loads I want to hide it.

But when I do it leaves a white rectangle right above the tab bar.

Anybody know how to fix this?

Thanks!!

- (void)loadView
{
CGRect screenFrame = [[UIScreen mainScreen] applicationFrame];
UIWebView *wv = [[UIWebView alloc] initWithFrame:screenFrame];

[wv setScalesPageToFit:YES];
[wv setDelegate:self];

[self setView:wv];
[wv release];
}
share|improve this question

1 Answer

When you hide the navigationBar you have to resize the UIWebView. ex:

myWebView.frame = [self.view.frame];
share|improve this answer
that didn't work for me... I added my code – MaxxApps Nov 25 '11 at 15:20
I figured it out from this post: stackoverflow.com/questions/563956/… – MaxxApps Nov 27 '11 at 0:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.