2

我正在尝试将 ExclusiveTouch 属性设置为我的自定义 UITableViewCell。

但是,添加此代码似乎不起作用。

for (UIView *view in cell.subviews)
{
    if ([view isKindOfClass:[UIView class]])
         {
             view.exclusiveTouch = YES;
         }
}

有人可以帮我弄清楚我错过了什么或我做错了什么吗?

4

1 回答 1

3

不确定但试一试:

cell.exclusiveTouch = YES
cell.contentView.exclusiveTouch = YES
于 2012-07-23T16:51:53.493 回答