3
我的應用程序每個都有5個帶有導航控制器的選項卡。UIToolbar在隱藏時留下白色矩形
在我的其中一個選項卡中,我使用導航控制器的默認工具欄。
當我的網絡視圖加載我想隱藏它。
但是當我這樣做時,在標籤欄上方留下一個白色矩形。
有人知道如何解決這個問題嗎?
謝謝!
- (void)loadView
{
CGRect screenFrame = [[UIScreen mainScreen] applicationFrame];
UIWebView *wv = [[UIWebView alloc] initWithFrame:screenFrame];
[wv setScalesPageToFit:YES];
[wv setDelegate:self];
[self setView:wv];
[wv release];
}
這並沒有爲我工作。我將我的代碼 – MaxxApps
我想通了,從這篇文章:http://stackoverflow.com/questions/563956/iphone-cgaffinetransformrotatepi-2- statusbarhiddenyes-presentmodalviewc – MaxxApps