I'm learning to develop cocoa apps, yet I'm jumping straight to Core Data. Well, it seems to be the right way to write the app I want. So, I've been looking into Magical Record and found this really helpful tutorial which explains how to setup Magical Record on your AppDelegate.
Problem is I'm building a document-based app, so I have a context per NSPersistentDocument
which is magically setup and available for me through the managedObjectContext
property.
So, first, I don't know if I should hook up MR to this context or override the Core Data's stack creation in my document class to use MR.
So how do I setup Magical Record here?