ナビゲーション バーを除いたフル ページの Web ビューの正しいフレームを取得するにはどうすればよいですか。
私はこれを試しました
CGRect screenFrame = [[UIScreen mainScreen]bounds];
webView = [[UIWebView alloc]initWithFrame:CGRectMake(0, 0, screenFrame.size.width, screenFrame.size.height-self.navigationController.navigationBar.bounds.size.height)];
しかし、下にスクロールすると、スクロールバーが切り取られます。webView のフレームの高さがまだ大きすぎるようです。