セルの相互作用を無効にしたい。私の機能では:
- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
追加した
Cell.userInteractionEnabled = NO;
また、セルの相互作用は無効になっていますが、アクティブなボタン (ButtonLabel) を残したいと思います。
Cell.userInteractionEnabled = NO;
Cell.ButtonLabel.userInteractionEnabled = YES;
上記のコードは機能しません。逆に大丈夫なので、それは奇妙です:
Cell.userInteractionEnabled = YES;
Cell.ButtonLabel.userInteractionEnabled = NO;
ボタンは無効になっていますが、セル番号はありません。
セルが無効になっているときにボタンをアクティブにする方法は?