tAfter creating a Master-Detail Application project, I replaced the following line of code, in MasterViewController.m,
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"timeStamp" ascending:NO];
with
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc]
initWithKey:@"timeStamp"
ascending:YES
comparator:^NSComparisonResult (id obj1, id obj2)
{
return NSOrderedSame;
}];
This is the only change I've made to the Apple code template. When I run it on Simulator 6.0, the code crashes when fetching the data...
if (![self.fetchedResultsController performFetch:&error]) {
with objc_exception_throw. BTW, this code works on the Simulator 5.1. Any idea what's wrong? Thanks in advance.