CollectionCell
open class CollectionCell<V, R> : UICollectionViewCell, RowConfigurable where V : View<R>, R : RowType
CollectionCell defines the basic of a collection cell
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 } -
Undocumented
Declaration
Swift
public override init(frame: CGRect) -
Undocumented
Declaration
Swift
public required init?(coder: NSCoder) -
Configure the view with a row
Declaration
Swift
open func configure(with row: RowType)Parameters
rowThe row of the view
CollectionCell Class Reference