I've created a Window based iPhone application in XCode 4 with Core Data. Regarding the core data bits I have some questions:
In the application delegate header file there are no the 3 core data properties do not appear as instance variables? i.e. there are no variables listed in the @interface section, yet there are properties for them and they are synthesized in implementation file. Is this correct?
In the default persistance mechanism SQLite? I see in the "persistentStoreCoordinator" method that the storeURL is "...URLByAppendingPathComponent:@"CoreDataProjectTemplate.sqlite"
Where & when will the actual sqlite persistance file get created? I can't see in the code from the template where this would be? Do you have to add your own code to create this?