I have an app where I write to a database using core data. This is working as I can see there is data in there using the SQLLite database browser. I am then retrieving the data into an NSMutable Array and I can see there is 1 record in debug mode using:
Print self.schoolNames.count
but I can't seem to read the array. My line is:
obsSchoolName = [[self.schoolNames objectAtIndex:0] obsSavedSchoolName];
where the attribute name of the field I am trying to access is obsSavedSchoolName.
Any ideas much appreciated.