Contents

editAction

The selector defining the action message to invoke when users tap the insert or delete button.

Declaration

@property (nonatomic) SEL editAction;

Discussion

When the cell’s table is in editing mode, the cell displays a green insert control or a red delete control to the left of it. (The selectedBackgroundView constant applied to the cell via the editingStyle property determines which control is used.) Typically, the associated UITableView object sets the editing action for all cells; you can use this property to alter the editing action for individual cells. If the value of this property is NULL, no action message is sent.

See Also

Deprecated