I'm using the code:
tableViewModel = [[SCTableViewModel alloc] initWithTableView:self.tableView withViewController:self];
SCClassDefinition *accountDef = [SCClassDefinition definitionWithEntityName:@"Tag"
withManagedObjectContext:self.managedObjectContext
withPropertyNames:[NSArray arrayWithObject:@"name"]];
SCArrayOfObjectsSection *objectSection = [SCArrayOfObjectsSection sectionWithHeaderTitle:nil withEntityClassDefinition:accountDef];
[tableViewModel addSection:objectSection];
Aside from subclassing SCTableViewModel, I'd like to override tableView:didSelectRowAtIndexPath:. Well to be more accurate, I'd like to have SCTableViewModel ignore it so that I can use the delegate method tableViewModel:didSelectRowAtIndexPath:.
Instead when a cell is clicked a detail view controller is displayed. I'd like to display my own controller using the boundobject of the selected cell.
Can I do that without subclassing SCTableViewModel?
Gary