Disable Scroll on a UIWebView allowed?

后端 未结 18 1486
深忆病人
深忆病人 2020-12-07 11:52

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

18条回答
  •  庸人自扰
    2020-12-07 12:26

    Since this question is still applicable, there is a new way to do it! (iOS 7.0+, perhaps iOS 6 also, not confirmed)

    webView.scrollView.scrollEnabled = NO;
    

    Take care :)

提交回复
热议问题