I have to show a web article with a UITableView
under the article.
The only option I found was to display the article in a UIWebView
in the
[[myWebView scrollView] setBounces:NO];
[[[WebView subviews] lastObject] setScrollingEnabled:NO];
that sorted it for me
Is a UIWebview and a UITableView on a UIScrollview, and setting the height of the webview (and adding to the total ContentSize of the Scrollview) like what you want?
The first is rejected by Apple. It happened to me just this morning.
Use it :
[[webView scrollView] setBounces:NO];
[[webView scrollView] setScrollingEnabled:NO];
Try this,
[(UIScrollView *)[[webView subviews] lastObject] setScrollEnabled:NO];