Reputation: 1429
I'm working on an iPhone app, and in the course of development I have creating what ends up being a really good set of test data on the actual iPhone that I'm using to debug the app.
What is the easiest way to: (1) copy the sqlite store off of the phone and (2) turn that sqlite store into something that can generate test fixtures for my unit tests?
Thanks very much!
Upvotes: 0
Views: 357
Reputation: 2684
You can download your app data onto your computer using Xcode's Organizer.
Now you will be able to find your sqlite in the "Documents" folder inside that folder you just saved.
Upvotes: 1