Hi,
I'm wanting to port my iPhone app to support an iPad SplitView which will have its own DetailViewController (a UIViewController) which will have its own TableView. From the Master View I want to select a Table Row which will have its details populated in the DetailViewController. So rather than pushing a new controller I'd like those details to appear in the detailView. How would this be achieved with the Sensible framework ? Would the tableView in the detail view be a SCTableViewModel ?? Would it be something like this :
SCObjectSection *objSection = [SCObjectSection sectionWithHeaderTitle:nil withBoundObject:managedObject withClassDefinition:inspectionDef];
[detailViewController.tableViewModel addSection:objSection];
but how would the detailViewController.tableViewModel be initialised ?
Many thanks for all your help. Phil.