I have a UITableView filled with objects. In the didSelectRowAtIndexPath method i have a UITableViewCellAccessoryCheckmark appear when the row is selected and disappea
Try to store selected index in a array or dictionary for the selected cell in didSelectRow method, and in cellForRowAtIndexPath check if that index is available in array then checkmark the cell with setting accesoryType. Hope you understand