Category: UIKit
-
Separate UITableView/UICollectionView DataSource from a View Controller in Swift
View controllers can get really massive in some cases when you place the data source and delegate methods inside it when using a tableView or a collectionView. To overcome that you can separate them out. In this article we will take a look at how we can separate the data source of tableView. A data…