1) I have the CoreData.framework imported. In Groups & Files I see it in the Framworks list together with UIKit.framework, Foundation.framework, CoreGraphics.framework.
2) I have this code, I am not sure what this error means
#import <UIKit/UIKit.h>
@interface SQLLiteDemoAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
MyTableViewController *myTableViewController; //error on this line
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@end
MyTableViewController.h looks like this
#import <UIKit/UIKit.h>
#import <CoreData/CoreData.h>
@interface MyTableViewController : UITableViewController {
NSMutableArray *names;
}
@end