I have to show a web article with a UITableView under the article.
UITableView
The only option I found was to display the article in a UIWebView in the
UIWebView
for all ios versions you can use this code instead of setScrollEnabled :
for (UIView *view in webview.subviews) { if ([view isKindOfClass:[UIScrollView class]]) { UIScrollView *scrollView = (UIScrollView *)view; scrollView.scrollEnabled = NO; } }