This repository has been archived by the owner on Nov 24, 2021. It is now read-only.
DATASource — 3.2.1
- Fixes typo in
dataSource:canEditRowAtIndexPath:
Previously in 3.2.0
This release improves DATASource's compatibility with UITableViewDataSource, before it wasn't possible to add behaviors related to editing cells, this is possible thanks to the help of the fantastic @tommypeps.
New DATASource Delegate Methods:
/*!
* UITableView specific
*/
- (BOOL)dataSource:(UITableView *)tableView
canEditRowAtIndexPath:(NSIndexPath *)indexPath;
- (void)dataSource:(UITableView *)tableView
commitEditingStyle:(UITableViewCellEditingStyle)editingStyle
forRowAtIndexPath:(NSIndexPath *)indexPath;