DataSources

  • A class for backporting UITableViewDiffableDataSource introduced in iOS 13.0+, tvOS 13.0+. Represents the data model object for UITableView that can be applies the changes with automatic diffing.

    See more

    Declaration

    Swift

    open class TableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType> : NSObject, UITableViewDataSource where SectionIdentifierType : Hashable, ItemIdentifierType : Hashable
  • A class for backporting UICollectionViewDiffableDataSource introduced in iOS 13.0+, tvOS 13.0+. Represents the data model object for UICollectionView that can be applies the changes with automatic diffing.

    See more

    Declaration

    Swift

    open class CollectionViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType> : NSObject, UICollectionViewDataSource where SectionIdentifierType : Hashable, ItemIdentifierType : Hashable