Popularity
4.6
Growing
Activity
0.0
Declining
314
12
30

Description

Powerful generic-based UICollectionView management framework, written in Swift 3.

Code Quality Rank: L4
Programming language: Swift
License: MIT License
Tags: Data Management     iOS     UICollectionView     DataSource     tvOS    
Latest version: v10.0.0

DTCollectionViewManager alternatives and similar libraries

Based on the "Data Management" category.
Alternatively, view DTCollectionViewManager alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of DTCollectionViewManager or a related project?

Add another 'Data Management' Library

README

CI codecov.io CocoaPod platform CocoaPod version Swift Package Manager compatible Packagist

DTCollectionViewManager

Features

  • [x] Powerful mapping system between data models and cells, headers and footers
  • [x] Automatic datasource and interface synchronization.
  • [x] Flexible Memory/CoreData/Realm/diffable datasource storage options
  • [x] Powerful compile-time safe events system, that covers all of UICollectionView delegate methods
  • [x] Views created from code, XIB, or storyboard, automatic registration and dequeue
  • [x] Can be used with UICollectionViewController, or UIViewController with UICollectionView
  • [x] Built-in support for iOS 14 UICollectionView.CellRegistration and content configuration
  • [x] Unified syntax with DTTableViewManager
  • [x] [Complete documentation](Documentation)
  • [x] API Reference

Requirements

  • Xcode 12+
  • iOS 11.0+ / tvOS 11.0+ / macCatalyst 13.0+
  • Swift 5.3+

If you need Xcode 11 support or Swift 4...Swift 5.2, or iOS 8...iOS 10 support, you can use 7.x releases.

Installation

Swift Package Manager

Add package into Xcode Project settings -> Swift Packages

CocoaPods:

pod 'DTCollectionViewManager', '~> 10.0.0'

Quick start

Let's say you have an array of Posts you want to display in UICollectionView. To quickly show them using DTCollectionViewManager, here's what you need to do:

  1. Create UICollectionViewCell subclass, let's say PostCell and adopt ModelTransfer protocol:
class PostCell : UICollectionViewCell, ModelTransfer {
    func update(with model: Post) {
        // Fill your cell with actual data
    }
}
  1. In your view controller:
class PostsViewController: UICollectionViewController, DTCollectionViewManageable {

    override func viewDidLoad() {
        super.viewDidLoad()

        // Register PostCell to be used with this controller's collection view
        manager.register(PostCell.self)

        // Populate datasource
        manager.memoryStorage.setItems(posts)
    }
}    

Make sure your UICollectionView outlet is wired to your class (or use UICollectionViewController subclass). If you have a PostCell.xib file, it will be automatically used for dequeueing PostCell.

  1. That's it! It's that easy!

Of course, cool stuff does not stop there, framework supports all datasource and delegate methods as closures, conditional mappings and much much more! Choose what interests you in the next section of readme.

Burning questions

Starter pack
  • [Why do I need this library?](Documentation/Why.md)
  • [How data models are mapped to cells?](Documentation/Mapping.md)
  • [Can I use unsubclassed UICollectionViewCell or UICollectionReusableView (for example UICollectionViewListCell)?](Documentation/Mapping.md#without-modeltransfer)
  • [How can I register views to dequeue from code/xib/storyboard?](Documentation/Registration.md)
  • [How can I use the same cells differently in different places?](Documentation/Conditional%20mappings.md)
  • [What datasource options do I have?(e.g. memory/CoreData/Realm/diffable datasources)](Documentation/Datasources.md)
  • [How can I implement datasource/delegate methods from UICollectionView?](Documentation/Events.md)
Advanced
  • [Can I implement delegate methods instead of using DTCollectionViewManager event closures?](Documentation/Events.md#can-i-still-use-delegate-methods)
  • [How can I react to and customize UICollectionView updates?](Documentation/CollectionViewUpdater.md)
  • [What if something goes wrong?](Documentation/Anomalies.md)

Sample code and documentation

Thanks

  • Alexey Belkevich for providing initial implementation of CellFactory.
  • Michael Fey for providing insight into NSFetchedResultsController updates done right.
  • Nickolay Sheika for great feedback, that helped shaping 3.0 release and future direction of the library.
  • Artem Antihevich for great discussions about Swift generics and type capturing.