I currently have a core data schema with four entities, several with many-to-many relationships with each other. I'd like to pre-populate the sqlite database for my core data store, but I'm uncertain which way is best. I'm currently considering creating a property list (to be converted to JSON), that I will then parse with a JSON parser object which will read in the properties and store them into core data. Alternatively, I could use XML.
So, which approach is easier to accomplish, and is best practice?