Is it possible to set the height of a UIWebView by doing something like this..
[webView.height: currentHeight - 44px];
So essentially, I wa
I guess this should be enough.
webView.frame = CGRectMake(webView.frame.origin.x, webView.frame.origin.y, webView.frame.size.width, webView.frame.size.height - 44);