I am following this iOS core data tutorial, Core Data Tutorial
My Xcode version is 6.1 while the tutorial uses older one. When needs to create a new project for Mac command line, the tutorial says "change the type to “Core Data”", but in my Xcode, there is no such Core Data option.
So, how shall I start this "Core Data" command line project?
I'm doing very much the same thing, with the exact same problem. My solution was to start a new cocoa project, which will give you a checkbox to use Core Data. This will generate all the Core Data Stack access gubbins. The implementation is fairly straight forward from there, except all the work is done in AppDelegate.m. The main() function is replaced by applicationDidFinishLaunching:().. method.
The only changes required are
and
Best of luck...
EDIT 1: To get the SQLite database that the tutorial proceeds with change if (![coordinator addPersistentStoreWithType:NSXMLStoreType configuration:nil URL:url options:nil error:&error]) { to if (![coordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:url options:nil error:&error]) {