ユーザーがボタンをクリックするとボタン付きのイメージビューがあるという点で、カスタムの uitableviewcell があります。ボタンには目盛りが表示されます。
ユーザーがボタンをクリックすると、目盛りが付いて表示されるはずです。助けてください
checkBoxButton.selected=!checkBoxButton.selected;
if(checkBoxButton.selected==1){
[checkBoxButton setBackgroundImage:[UIImage imageNamed:@"checked.png"] forState:UIControlStateSelected];
}
else{
[checkBoxButton setBackgroundImage:[UIImage imageNamed:@"unchecked.png"] forState:UIControlStateNormal];
}