<!--
{
  "availability" : [
    "iOS: 2.0.0 -",
    "iPadOS: 2.0.0 -",
    "macCatalyst: 13.1.0 -",
    "tvOS: -",
    "visionOS: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "UIKit",
  "identifier" : "/documentation/UIKit/UITableViewCell/editingAccessoryType",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Property",
  "symbol" : {
    "kind" : "Instance Property",
    "modules" : [
      "UIKit"
    ],
    "preciseIdentifier" : "c:objc(cs)UITableViewCell(py)editingAccessoryType"
  },
  "title" : "editingAccessoryType"
}
-->

# editingAccessoryType

The type of standard accessory view for the cell to use in the table view’s editing state.

```
var editingAccessoryType: UITableViewCell.AccessoryType { get set }
```

## Discussion

The accessory view appears in the right side of the cell when the table view is in editing mode. The standard accessory views include the disclosure chevron; for a description of valid constants, see [`UITableViewCell.AccessoryType`](/documentation/UIKit/UITableViewCell/AccessoryType-swift.enum). The default is [`UITableViewCell.AccessoryType.none`](/documentation/UIKit/UITableViewCell/AccessoryType-swift.enum/none). If a custom accessory view for editing mode is set through the [`editingAccessoryView`](/documentation/UIKit/UITableViewCell/editingAccessoryView) property, the value of this property is ignored. If the cell is enabled and the accessory type is [`UITableViewCell.AccessoryType.detailDisclosureButton`](/documentation/UIKit/UITableViewCell/AccessoryType-swift.enum/detailDisclosureButton), the accessory view tracks touches and, when tapped, sends the delegate object a [`tableView(_:accessoryButtonTappedForRowWith:)`](/documentation/UIKit/UITableViewDelegate/tableView(_:accessoryButtonTappedForRowWith:)) message.

The accessory type cross-fades between normal and editing states if it set for both states; use the [`accessoryType`](/documentation/UIKit/UITableViewCell/accessoryType-swift.property) property to set the accessory view for the cell during the table view’s normal state. If this property is not set for both states, the cell is animated to slide or out, as necessary.

## See Also

[`willTransition(to:)`](/documentation/UIKit/UITableViewCell/willTransition(to:))

Notifies the cell that it’s about to transition to a new cell state.

[`didTransition(to:)`](/documentation/UIKit/UITableViewCell/didTransition(to:))

Notifies the cell that it transitioned to a new cell state.



---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)