TableCell

open class TableCell<V, R> : UITableViewCell, RowConfigurable where V : View<R>, R : RowType

TableCell defines a cell that contains a basic view.

Version

1.8.0

Date

04/05/22

Author

Adamas
  • Reusable id of the cell type

    Declaration

    Swift

    public static var reusableIdentifier: String { get }
  • The main part of the cell

    Declaration

    Swift

    public private(set) var view: V? { get }
  • row

    Quick access to the row

    Declaration

    Swift

    public var row: R? { get }
  • Configure the view with a row

    Declaration

    Swift

    open func configure(with row: RowType)

    Parameters

    row

    The row of the view

  • Undocumented

    Declaration

    Swift

    public override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?)
  • Undocumented

    Declaration

    Swift

    public required init?(coder: NSCoder)