I have placed three buttons over UITableViewCell and its background is set to an unselect radio button image.
While clicking the button I’m again setting the background image as select button.
In a row one select button should persist but while scrolling UITableView all the selected button images are getting cleared
Can somebody please give me any idea how to do this in this way or in other way ?
You probably are not reusing the cells correctly. When you scroll, a previous cell is reused by the
UITableView, but you don’t change its contents correctly. Here is a sample code for ur reference