I have UITableViewControllerone that is served using NSFetchedResultsController.
Everything worked fine until I added
if (self.fetchedResultsController != nil)
{
return self.fetchedResultsController;
}
at the beginning of my
-(NSFetchedResultsController *)fetchedResultsController {
method. The error I am getting is:
Program received signal: "EXC_BAD_ACCESS".
Any idea why this could be? I announce
@property (nonatomic, retain) NSFetchedResultsController *fetchedResultsController;
in the .h file and
@synthesize fetchedResultsController
in the implementation file.
Thanks ~
source
share