I have found several threads with references to the function:
- (void)tableViewModel:(SCTableViewModel *)tableViewModel
valueChangedForRowAtIndexPath:(NSIndexPath *)indexPath
I have added the function to my view controller and made sure that the controller conforms to the <SCTableViewModelDelegate>
...
#import <UIKit/UIKit.h>
#import <CoreData/CoreData.h>
#import "SCTableViewModel.h"
@class DetailViewController;
@interface RootViewController : UITableViewController <SCTableViewModelDataSource, SCTableViewModelDelegate>
{
.....
Any ideas? I have even tried this in the iPad sample app unsuccessfully as well.