Seeding CoreData With RestKit
I’ve recently written a post about seeding your SQLite database into Core Data.
Fortunately, pointed out I should be using RestKit.
RestKit includes a Restful HTTP Client, Object Mapping, and a bunch of other stuff, like Database Seeding. Big monsters typically scare me, but I gave it a try because I really needed a better way to seed my data.
First thing’s first: you need to set up RestKit for your project. I won’t go into the details, because they are here.
Once RestKit is installed, here’s what you need to do to seed your database from JSON:
I. Create a new target for your application. Call it “Generate Seed” or something.
The way to create a new target is to click on your project, and in the “Summary”, click on Add Target:
II. Click on the newly created target, go to “Build Settings” and search for “macros”. Double click on the value for “Preprocessor Macros” and overwrite whatever is in there with “RESTKIT_GENERATE_SEED_DB” (without the quotes, obviously). Click Done.
III. Now we need to modify out AppDelegate.m a bit. First, import the RestKit.h and RestKit’s CoreData:
1 2 |
|
Here’s what your appFinishLaunchingWithOptions might look like (this is mostly from RestKit’s example Twitter project):
IV. The data we’re seeding will need to be in JSON. So, in our case, I dragged a statuses.json file in XCode and copied it there (make sure it’s in the Seed Target, as we have no use for it in our main Target).
But what is in that JSON file?
Basically this:
1 2 3 4 5 6 7 8 9 10 |
|
RestKit uses the mappings in the code above to map each JSON field to your CoreData model. Then there’s a little more ceremony, and we’re done.
Not really. We haven’t run it yet.
V. To generate the seed database, you’ll want to run the seed target we created. You do that by clicking on the top left between the stop button and the device you select. Run it in the simulator, not on the device.
When you build your code, you may get some weird Mach-O Linker errors like this:
Best thing I’ve found was to delete the seed target and recreate it.
If that doesn’t work, you may try manually deleting the Seed Database and CoreData database in the file system.
After it runs successfully, it will print in the console a message to copy the sqlite seed database it just generated to your project. Open that folder in the Finder and drop it in your project.
You should now be able to run your main target and the seed data will be there.
Next time you change your model or seed data, you just need to delete the Seed App from your simulator, run the seed target again, and copy the seed database it creates to your project.
Hope this helps. mobile tuts+ also has a nice tutorial that might help with some of this stuff.