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 : UITableViewCell
Parameters
cellType
Concreate cell type.
indexPath
IndexPath 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 : UITableViewCell
Parameters
cellTypes
Concreate cell types.
bundle
Bundle 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