Row

open class Row : RowType

Row presents a single item in the collection.

Version

1.8.0

Date

05/10/21

Author

Adamas
  • Declaration

    Swift

    public let title: String?
  • Declaration

    Swift

    public let icon: UIImage?
  • Declaration

    Swift

    public var reloadAction: (() -> Void)?
  • Declaration

    Swift

    public var isHidden: Bool { get set }
  • Create a row

    Declaration

    Swift

    public init(icon: UIImage? = nil,
                title: String? = nil)

    Parameters

    icon

    The icon of the row. Default to nil.

    title

    The title of the row. Default to nil.