カスタムのtableViewボタンの色でセルの色を変更しています。セルの indexRow がボタンをクリックすると緑色になりますが、スクロールすると再び通常の白色になります。さまざまな解決策を試しましたが、結果はありませんでした。提案していただけませんか。ありがとう。
-(void)yesAction:(id)sender
{
_cellButtonPress = YES;
// [myChklist reloadData];
UIButton *button = (UIButton *)sender;
UITableViewCell *cell = (UITableViewCell *)button.superview.superview;
UITableView *curTableView = (UITableView *)cell.superview;
NSIndexPath *indexPath = [curTableView indexPathForCell:cell];
cell.backgroundColor = [UIColor greenColor];
}