UITableViewCellSeparatorStyle Enum
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.
The visual style of a UITableView's cell separator.
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
public enum UITableViewCellSeparatorStyle
type UITableViewCellSeparatorStyle =
- Inheritance
-
UITableViewCellSeparatorStyle
- Attributes
Fields
DoubleLineEtched | 2 | A single etched line (made up of two different colored lines) is displayed between each cell (same as SingleLineEtched). This style can only be used in grouped-style table views. |
None | 0 | No separator is displayed between cells. |
SingleLine | 1 | A single line is displayed between each cell. This is the default. |
SingleLineEtched | 2 | Developers should not use this deprecated field. Developers should use 'SingleLine' for a single line separator. |
Remarks
The cell separator style is set via a table view's SeparatorStyle property.