Hi,
I have setup my propertyDefinition as type
SCPropertyTypeObjectSelection and based on a
ClassDefinition as follows :
SCClassDefinition *subAreaClassDef =
[SCClassDefinition definitionWithEntityName:@"SubAreaType" withManagedObjectContext:managedObjectContext
withPropertyNames:[NSArray arrayWithObjects:@"name", nil]];
SCPropertyDefinition *subInspectionAreaPropertyDef = [subInspectionAreaClassDef propertyDefinitionWithName:@"subArea"];
subInspectionAreaPropertyDef.type = SCPropertyTypeObjectSelection;
subInspectionAreaPropertyDef.attributes = [SCObjectSelectionAttributes attributesWithItemsEntityClassDefinition:subAreaClassDef withItemsTitlePropertyName:@"name" allowMultipleSelection:NO allowNoSelection:NO];
When that cell is displayed however via
detailViewWillAppearForCell, I want to be able to filter the rows returned for the user, from that
SubAreaType CoreData table. Is this possible somehow ? ? Thanks