Skip to content
This repository has been archived by the owner on Nov 24, 2021. It is now read-only.

DATASource — 5.1.0

Compare
Choose a tag to compare
@3lvis 3lvis released this 25 Nov 09:16
· 234 commits to master since this release
  • Improved the delegate method that provides custom collection view headers to provide the title for the section.

Before

optional func dataSource(dataSource: DATASource, collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, atIndexPath indexPath: NSIndexPath) -> UICollectionReusableView

After

optional func dataSource(dataSource: DATASource, collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, atIndexPath indexPath: NSIndexPath, withTitle title: String) -> UICollectionReusableView

As a result the before method has been deprecated.