我正在尝试将 ExclusiveTouch 属性设置为我的自定义 UITableViewCell。
但是,添加此代码似乎不起作用。
for (UIView *view in cell.subviews)
{
if ([view isKindOfClass:[UIView class]])
{
view.exclusiveTouch = YES;
}
}
有人可以帮我弄清楚我错过了什么或我做错了什么吗?
我正在尝试将 ExclusiveTouch 属性设置为我的自定义 UITableViewCell。
但是,添加此代码似乎不起作用。
for (UIView *view in cell.subviews)
{
if ([view isKindOfClass:[UIView class]])
{
view.exclusiveTouch = YES;
}
}
有人可以帮我弄清楚我错过了什么或我做错了什么吗?