You just need to set the "movable" property of all detail selection cells to TRUE. To do that, you need to first conform to the SCTableViewModelDelegate in your view controller's header file. Then, in the implementation file, please add the following methods:
- (void)tableViewModel:(SCTableViewModel *) tableViewModel
detailViewWillAppearForRowAtIndexPath:(NSIndexPath *) indexPath
withDetailTableViewModel:(SCTableViewModel *) detailTableViewModel
{
// Set the detail table view model's delegate to self so that you can handle
// the willConfigureCell method
detailTableViewModel.delegate = self;
}
// Now handle the willConfigureCell method
- (void)tableViewModel:(SCTableViewModel *)tableViewModel
willConfigureCell:(SCTableViewCell *)cell
forRowAtIndexPath:(NSIndexPath *)indexPath
{
if(tableViewModel != tableModel) // Make sure it's the detail model not the main model
{
cell.movable = TRUE;
}
}
Please tell me if this helps.