Hi!
I have a House->Adress relationship (House can only have 1 Adress). When i change the street in the Adress relationship the Houses tableview won't get resorted even though i set these properties in the House entity classdef. Am i missing something?
- (void)viewDidLoad {
// Create a class definition for HouseEntity
...
entityClassDef.titlePropertyName = @"adress.street";
entityClassDef.keyPropertyName = @"adress.street";
...
// Instantiate the tabel model
tableModel = [[SCArrayOfObjectsModel alloc] initWithTableView:self.tableView withViewController:self withEntityClassDefinition:houseClassDef];
tableModel.addButtonItem = self.navigationItem.rightBarButtonItem;
tableModel.autoSortSections = TRUE;
tableModel.hideSectionHeaderTitles = TRUE;
}
Anxiously waiting new release.

Thanks!