RowType
public protocol RowType : AnyObject
The interface of a row
-
The title of the row
Declaration
Swift
var title: String? { get } -
The icon of the row
Declaration
Swift
var icon: UIImage? { get } -
The visibility of the row
Declaration
Swift
var isHidden: Bool { get set } -
Callback when the view should be updated
Declaration
Swift
var reloadAction: (() -> Void)? { get set }
RowType Protocol Reference