This repository has been archived by the owner on Nov 24, 2021. It is now read-only.
DATASource — 5.7.0
- 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!