View

open class View<Row> : UIView, RowConfigurable where Row : RowType

View defines the basic of a custom view

Version

1.8.0

Date

11/10/21

Author

Adamas
  • The title label on the view

    Declaration

    Swift

    @IBOutlet
    public private(set) var titleLabel: UILabel? { get }
  • The main image on the view

    Declaration

    Swift

    @IBOutlet
    public private(set) var iconImageView: UIImageView? { get }
  • row

    The row of the view

    Declaration

    Swift

    public private(set) var row: Row? { get }
  • Undocumented

    Declaration

    Swift

    public required init?(coder: NSCoder)
  • Undocumented

    Declaration

    Swift

    public override init(frame: CGRect)
  • Initialize the UI

    Declaration

    Swift

    open func initialize()
  • Configure the view with a row

    Declaration

    Swift

    open func configure(with row: RowType)

    Parameters

    row

    The row of the view