Skip to content

UIKit Extensions

Emrah Turan edited this page Jan 17, 2024 · 1 revision

UICollectionView

collectionView.registerCell(type: xxxCollectionViewCell.self)
let cell: xxxCollectionViewCell = collectionView.dequeueReusableCell(forIndexPath: indexPath)

UITableView

tableView.registerCell(type: xxxTableViewCell.self)
let cell: xxxTableViewViewCell = tableView.dequeueReusableCell(forIndexPath: indexPath)

Clone this wiki locally