I have had to change a UIScrollView into a UIWebView due to formatting reasons.
UIScrollView
UIWebView
There is a problem though that I need to be able to get the
This problem can be solved quite easily:
[[webView scrollView] setContentInset:UIEdgeInsetsMake(64, 0, 44, 0)];
Remember that UIEdgeInset is different from CGRect! A guide on UIEdgeInset can be found in the iOS Developer Library.