Hi Matthew,
You can add any additional cells/sections you want inside the "tableViewModel:detailViewWillAppearForRowAtIndexPath:withDetailTableViewModel:" method. Here is a code sample illustrating adding an additional SCLabelCell:
- (void)tableViewModel:(SCTableViewModel *)tableViewModel
detailViewWillAppearForRowAtIndexPath:(NSIndexPath *)indexPath
withDetailTableViewModel:(SCTableViewModel *)detailTableViewModel
{
SCLabelCell *labelCell = [SCLabelCell cellWithText:@"Label Cell"];
labelCell.label.text = @"My label";
[detailTableViewModel sectionAtIndex:0] addCell:labelCell];
}
Going one step further, if I wanted to make a completely custom cell and insert that into the detail table view (also not bound to a Core Data attribute) would STV 2.0 allow this to happen (through designing the cell in IB)?
Sure, that can be created using the exact same code as above. Just create an SCControlCell as in the "Custom Cells App" sample application and add it to the detail section. Please tell me if you need any more help.