为什么UICollectionView中的UIWebView不滚动?

时间:2017-10-03 20:22:10

标签: scroll uiwebview

我有UICollectionView,其中一个单元格有UIWebView。我已经设置了所有内容,但UIWebView仍然没有scroll并且点击后website加载时没有响应。请帮助找出可能的原因。我已将以下代码添加到UIWebView

        cell.redemWebview.userInteractionEnabled = YES;
        cell.redemWebview.scrollView.scrollEnabled = YES;
        [cell.redemWebview.scrollView setShowsVerticalScrollIndicator:YES];
        cell.redemWebview.scalesPageToFit = YES;

1 个答案:

答案 0 :(得分:0)

我通过在单元格中添加此行来解决此问题。我希望这可以帮助别人。

[self bringSubviewToFront:self.redemWebview];