FancySources 1.0.1

FancySources 1.0.1

Maintained by Sergey Maslov.



  • By
  • Nikolay Ischuk

FancySources

Flexible, generic and abstracted from UIKit data sources

Usage example

typealias DataSourceType = CollectionViewDataSource

func didLoadEntities(entities: [SomeEntities]) {        
    let dataSource = DataSourceType(items: entities)
    fill(with: dataSource)
}

func fill(with dataSource: DataSourceType) {
    dataSource.cellDescriptorCreator = {
        [weak self] item, index in

        return CellDescriptor(nibName: String(describing: SomeGameCell.self), configure: {
            (cell: SomeGameCell) in

            cell.fill(with: item)
            cell.delegate = self
        })
    }
    collectionView.dataSource = dataSource
    collectionView.reloadData()
}