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

DATASource — 5.7.0

Compare
Choose a tag to compare
@3lvis 3lvis released this 02 May 10:13
· 147 commits to master since this release
  • Add support for setting custom row animations per type (#63)
let dataSource = DATASource(tableView: self.tableView, cellIdentifier: "Cell", fetchRequest: request, mainContext: self.dataStack.mainContext, configuration: { cell, item, indexPath in
    cell.textLabel?.text = item.valueForKey("title") as? String
})
dataSource.animations[.Insert] = .Fade

Great addition @zarv1k!