I'm following the tutorial CS193p on itunes and running into a problem with the core data lesson. I've done everything exactly as in the demo (however for a slightly different app than in the lesson) and also included the CoreData Framework under build phases for my project. However it still throws this error:
Undefined symbols for architecture i386:
"_OBJC_CLASS_$_CoreDataTableViewController", referenced from: _OBJC_CLASS_$_BudgetTableViewController in BudgetTableViewController.o
"_OBJC_METACLASS_$_CoreDataTableViewController", referenced from: _OBJC_METACLASS_$_BudgetTableViewController in BudgetTableViewController.o ld: symbol(s) not found for architecture i386 clang: error: linker command failed with exit code 1 (use -v to see invocation)
Any idea why? In my BudgetTableViewController.h I've included CoreDataTableViewController.h. And CoreDataTableViewController.h imports So I don't know where the problems is?