Hi Karl,
Let's say that you need to distribute the cells automatically generated by STV into two sections, A and B, instead of just being in only one section. Here is a quick idea that you can implement in tableViewModel:detailViewWillAppearForRowAtIndexPath:withDetailTableViewModel:
a. Create sections A & B as normal SCTableViewSection instances, and add them to the detailTableViewModel.
SCObjectSection *sectionA = [SCObjectSection sectionWithHeaderTitle:@"Section A"];
[detailTableViewModel addSection:sectionA];
SCObjectSection *sectionB = [SCObjectSection sectionWithHeaderTitle:@"Section B"];
[detailTableViewModel addSection:sectionB];
b. Add the relevant cells from the original detail section into these two sections. For example:
[sectionA addCell:[[detailTableViewModel sectionAtIndex:0] cellAtIndex:1]];
c. Remove the original section:
[detailTableViewModel removeSectionAtIndex:0];
Hope this helps