I have a SCSelectionCell that brings up the detail view of items just fine but if I don't select an item (e.g. simply click "back" navigation button) my app crashes with SIGABRT. Below is my code for the SCSelectionCell. Note I've tried to use some of the properties to avoid this and I am not generating from ObjectCells from my object:
SCSelectionCell *selectionCell = [SCSelectionCell alloc] initWithText:@"Service" withBoundObject:newAppointment withSelectionStringPropertyName:@"serviceName" withItems:serviceItems];
selectionCell.allowNoSelection = FALSE;
selectionCell.valueRequired = TRUE;
selectionCell.autoValidateValue = TRUE;
//selectionCell.detailViewModal = TRUE;
[section2 addCell:selectionCell];
Thanks in advance for any direction you can provide!