Adding an arrow thingie or checkbox to tableview cells (UITableView->General)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
UITableViewCellAccessoryCheckmarkfor a checkmark.Use
UITableViewCellAccessoryNoneto remove the checkmark.