UITableViewCell.AccessoryView Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A view on the right side of a UITableViewCell (normal state).
public virtual UIKit.UIView AccessoryView { [Foundation.Export("accessoryView", ObjCRuntime.ArgumentSemantic.Strong)] get; [Foundation.Export("setAccessoryView:", ObjCRuntime.ArgumentSemantic.Strong)] set; }
member this.AccessoryView : UIKit.UIView with get, set
Property Value
This value can be null
.
- Attributes
Remarks
If this property is not null
then the cell uses the given view as the accessory (for the normal state). The value of the Accessory is ignored when AccessoryView is set. The custom accessory view can be a control, a label or a custom view.
The accessory view cross-fades between normal and editing states if it is set for both states; use the EditingAccessoryView property to set a custom accessory view to be displayed in editing mode. If an accessory is not defined for both states (normal and editing) the the accessory view is animated to slide in or out, as required.