@Chakradhar is not a big problem, you can do it very easily with or without using custom images .. in your deletion, didSelectRowAtIndexPathtry to check and give UITableViewCellAccessoryaccording to your condition .... this is a way in which there is no need to use additional images, and you You can check for a specific selected cell.
if (
{
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}
else
{
cell.accessoryType = UITableViewCellAccessoryNone;
}
Take this shopping tutorial and see the didSelectRowAtIndexPathdelegate method to find out how they used this condition.
Edited according to your last comment: For a custom look for accessories, search for Custom Access View View for UITableView on iPhone
Good luck
source
share