I'm using a SCArrayOfObjectsSection and I'd like to add a title and add placeholders to the textfields in the cells of the detailView that is presented in the form sheet when I click the add button item.
SCArrayOfObjectsSection *objectSection = [SCArrayOfObjectsSection sectionWithHeaderTitle:nil withEntityClassDefinition:accountDef];
objectSection.addButtonItem = self.navigationItem.rightBarButtonItem;
objectSection.allowEditDetailView = YES;
objectSection.detailViewModalPresentationStyle = UIModalPresentationFormSheet;
Where would I access those properties?
Gary