If you have the cell, you can set the accessoryType directly:UITableViewCell *cell = ...; cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;The delegate method (accessoryTypeForRowWithIndexPath) has been deprecated, so don't use that.Use
UITableViewCellAccessoryCheckmark
for a checkmark.Use
UITableViewCellAccessoryNone
to remove the checkmark.