learner2010
learner2010

Reputation: 4167

setting exclusiveTouch to custom UITableViewCell

I am trying to set the exclusiveTouch property to my custom UITableViewCell.

However, adding this code does not seem to work.

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

Could someone help me figuring out what I am missing or what I am doing wrong?

Upvotes: 3

Views: 2170

Answers (1)

Ecarrion
Ecarrion

Reputation: 4950

Not sure but give it a try:

cell.exclusiveTouch = YES
cell.contentView.exclusiveTouch = YES

Upvotes: 3

Related Questions