Folks,
Simply wanted to update my app in the app store, from over a year ago. I did not change any code, but when I ran the app, I am now getting an error message...
**STV** Warning: PlantCategories - No valid data definition selected for SCArrayOfObjectsSection at index 0
Something must have changed slightly in XCode since I did not do any editing...
Any ideas? I am at a loss...
John
If more detail info is required, I can copy and paste, but for now, just wondering if there is something simple to adjust since moving to XCode 8.2.1
Here is the code that should fire... but nothing happens...
- (IBAction)pressedAdd:(id)sender {
SCArrayOfObjectsSection *myObjectsSection = (SCArrayOfObjectsSection *)[self.tableViewModel sectionAtIndex:0];
[myObjectsSection dispatchEventAddNewItem];
SCTableViewCell *stringCell = [SCTableViewCell cellWithText:@"String Example Cell"];
stringCell.cellActions.willConfigure = ^(SCTableViewCell *cell, NSIndexPath *indexPath)
{
cell.editable = YES;
};
NSLog(@"pressed the pressAdd button - test");
}
John
Edited by designwerks, 13 March 2017 - 01:08 PM.