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];
}