我的单元格上有一个UIWebView。内容很大,应该可以滚动。

但是webview阻止Tableview didselect委托。如何克服这一点。如果我将userinteractionenabled = NO;滚动不起作用。

任何解决方案请帮忙。提前致谢。

最佳答案

尝试使用hitTest的替代

- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
{
    id hitView = [super hitTest:point withEvent:event];

    if (hitView == self) {
        return nil;
    } else {
        return hitView;
    }
}

关于ios - UITableView上的UIWebView阻止选择表单元格,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22386877/

10-11 09:04