UITableView
extension UITableView
-
Undocumented
Declaration
Swift
func registerKeyCell() -
Undocumented
Declaration
Swift
func dequeueReusableKeyCell(for indexPath: IndexPath) -> DMKeyCell -
Dequeue cell for the UITableView.
Declaration
Swift
func dequeueReusableCell<Cell>(cellType: Cell.Type, for indexPath: IndexPath) -> Cell where Cell : UITableViewCellParameters
cellTypeConcreate cell type.
indexPathIndexPath of the cell.
-
Registers cell’s nibs for the UITableView, nib file name must be the same as cell type.
Declaration
Swift
func register<Cell>(cellTypes: [Cell.Type], bunde: Bundle? = nil) where Cell : UITableViewCellParameters
cellTypesConcreate cell types.
bundleBundle of nib, by default nil.
-
Undocumented
Declaration
Swift
func dequeueReusableHeaderFooterView(withIdentifier identifier: HeaderFooterReuseIdentifier) -> UITableViewHeaderFooterView? -
Undocumented
Declaration
Swift
func dequeueReusableCell(withIdentifier identifier: CellReuseIdentifier) -> UITableViewCell? -
Undocumented
Declaration
Swift
func dequeueReusableCell(withIdentifier identifier: CellReuseIdentifier, for indexPath: IndexPath) -> UITableViewCell