セルがクリックされたときにCellImageに画像を表示していますが、問題は、新しいセルが選択されたときに前のセルの画像も表示されることです。ユーザーが新しいセルを選択したときに、前のcellImageを非表示にする必要があります。
ここにコードがあります
-(IBAction)imageButtonAction:(id)sender{
CustomCell *cell = (CustomCell *) [[sender superview] superview];
UIButton *btn = (UIButton *)sender;
UIView *backimage = [[UIView alloc] initWithFrame:CGRectMake(300,0,312,105)];
backimage.backgroundColor=[UIColor colorWithPatternImage:[UIImage imageNamed:@"popupj.png"]];
[backimage setUserInteractionEnabled:YES];
[cell addSubview:backimage];
}
カスタムセルを使用したセルにあるボタンでこのメソッドを呼び出しています