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.0Date
04/05/22-
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 } -
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
rowThe row of the view
-
Undocumented
Declaration
Swift
public override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) -
Undocumented
Declaration
Swift
public required init?(coder: NSCoder)
TableCell Class Reference