如何获得完整页面 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 的框架高度仍然太大。