SectionType

public protocol SectionType

The protocol of a section

  • The header of the section.

    Declaration

    Swift

    var header: String? { get }
  • The footer of the section.

    Declaration

    Swift

    var footer: String? { get }
  • Rows contained in the section

    Declaration

    Swift

    var rows: [RowType] { 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 }