I have seen some posts before, but didn’t get the answer yet, thats why i am trying to post again in more effective manner. How can i use check-uncheck functionality in UITableView like below image.
This is table i want when i click on button of any cell, that buttons image will change, not on all cells.

For Check-Uncheck functionality only
buttonClicked:method is not enough. You will have also put the condition incellForRowAtIndexPath:method for which button is selected or which in unselected becausecellForRowAtIndexPath:method will call each time when you will scroll yourUITableViewand cells will be refresh.And i saw your previous question you’re adding two buttons with two action not a good way just change the image of button for
check-uncheck.So here is what i do for this –
Now in
ViewController.mclass –And finally it will look like –