I've a tableView with some cells. Each cell also contains a button. When the user clicks the button, the cell should be unclickable, but not the button. So when the user clicks on the button of a cell which is not clickable, this cell should be clickable again.
I tried:
cell.userInteractionEnabled = NO;
...but then the button wasn't clickable anymore.
Thanks to your effort in advance.
EDIT I mean: When I click on a cell a new view opens. But I want, that no action happens, when the cell is not "clickable".
userInteractionEnabled
on the individual controls. – Luteolin