Enumeration: UITableViewCellEditingStyle

Overview

The editing control used by a cell.

Constant Summary

UITableViewCellAccessoryNone

The cell does not have any accessory view. this is the default value.available in ios 2.0 and later.declared in uitableviewcell.h.

UITableViewCellAccessoryDisclosureIndicator

The cell has an accessory control shaped like a regular chevron. it is intended as a disclosure indicator. the control doesn't track touches.available in ios 2.0 and later.declared in uitableviewcell.h.

UITableViewCellAccessoryDetailDisclosureButton

The cell has an accessory control that is a blue button with a chevron image as content. it is intended for configuration purposes. the control tracks touches.available in ios 2.0 and later.declared in uitableviewcell.h.

UITableViewCellAccessoryCheckmark

The cell has a check mark on its right side. this control does not track touches. the delegate of the table view can manage check marks in a section of rows (possibly limiting the check mark to one row of the section) in its tableview:didselectrowatindexpath: method.available in ios 2.0 and later.declared in uitableviewcell.h.