Row
public protocol Row : AnyObject
Any type that conforms to this protocol is capable of representing a row in a table view.
-
The text of the row.
Declaration
Swift
var text: String { get }
-
The detail text of the row.
Declaration
Swift
var detailText: DetailText? { get }
-
A closure related to the action of the row.
Declaration
Swift
var action: ((Row) -> Void)? { get }