I have a simple class:
#import <UIKit/UIKit.h>
#import <CoreData/CoreData.h>
@interface MyTableViewController : UITableViewController
{
@protected
NSFetchedResultsController *_fetchedResultsController;
}
And one more:
#import <UIKit/UIKit.h>
@interface MyChildTableViewController : MyTableViewController
{
}
- (void)someMethod;
The problem is that I can't use _fetchedResultsController
in MyChildTableViewController
class. I get compile-time error: '_fetchedResultsController' undeclared (first use in this function)`
What's wrong here?