The cells are auto generated.... I think here:
- (void)viewDidLoad {
[super viewDidLoad];
// NSLog(@"%s", __FUNCTION__);
// Set up the edit and add buttons.
self.navigationItem.leftBarButtonItem = self.editButtonItem;
UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:nil action:nil];
// Create PresentEntity class def
SCClassDefinition *presentDef = [SCClassDefinition definitionWithEntityName:@"PresentEntity" withManagedObjectContext:self.managedObjectContext
withPropertyNames:[NSArray arrayWithObjects:@"firstSingle", @"secondSingle", @"thirdSingle", @"firstPlural", @"secondPlural", @"thirdPlural", nil]];
SCClassDefinition *verbDef = [SCClassDefinition definitionWithEntityName:@"VerbEntity" withManagedObjectContext:self.managedObjectContext
withPropertyNames:[NSArray arrayWithObjects:@"name", @"translation", @"present", @"simplePast", @"simpleFuture", @"contPast", @"contFuture", nil]];
[verbDef propertyDefinitionWithName:@"name"];
[verbDef propertyDefinitionWithName:@"present"].attributes = [SCObjectAttributes attributesWithObjectClassDefinition:presentDef];
[verbDef propertyDefinitionWithName:@"simplePast"].attributes = [SCObjectAttributes attributesWithObjectClassDefinition:sPastDef];
[verbDef propertyDefinitionWithName:@"simpleFuture"].attributes = [SCObjectAttributes attributesWithObjectClassDefinition:sFutureDef];
SCPropertyDefinition *namePropertyDef = [verbDef propertyDefinitionWithName:@" "];
namePropertyDef.title = @" ";
// Instantiate the table model
tableModel = [[SCArrayOfObjectsModel alloc] initWithTableView:self.tableView withViewController:self
withEntityClassDefinition:verbDef];
@end