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

DATASource — 3.2.1

Compare
Choose a tag to compare
@3lvis 3lvis released this 13 Aug 13:25
· 353 commits to master since this release
  • 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;