I am using a SCTableViewModel in the simplest possible way - just as a one level menu in an iPad split view controller. The mechanics of the table are working as described, but the cells do not show highlighted when they are selected.
I have implemented
- (void)tableViewModel:(SCTableViewModel *) tableViewModel didSelectRowAtIndexPath:(NSIndexPath *) indexPath
which is firing at the correct time. Inside that function I have:
SCTableViewCell *theCell = [tableModel cellAtIndexPath:indexPath];
theCell.selectionStyle = UITableViewCellSelectionStyleBlue;
theCell.selected = YES;
which ought to set the cell as highlighted, but it doesn't seem to do anything. Am I missing something?
Thanks!