currently i get a crash when your framework tries to access activeCell.
i regenerate my whole model (it's not large) on every viewWillAppear
activeCell turns into garbage and on the next cell touch it crashes here:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
SCTableViewCell *cell = [self cellAtIndexPath:indexPath];
if(cell != self.activeCell)
{
if(self.activeCell.autoResignFirstResponder) <--- CRASH!!!
my workaround is to add
[tableModel clear];
tableModel.activeCell = nil; // clear activecell, fix crash
But that's not optimal because it's error phrone AND Sensible TableView should remember the last selected IndexPath and restore it (so that the last cell fades out)
Thanks!