I was wondering what some people's opinions are about the best way to test a mapping model? I'm currently working on an app to an upgrade of an app in the app store and want to test the mapping model hard before submitting.
|
feedback
|
|
I have been doing exactly this same thing. I use iPhone Configuration Utility to install the 1.0 version of our app (repeatedly). After that, I simply run the current version of the app (1.0.1) in the debugger in Xcode. Works just fine. HTH | |||||||||||||
feedback
|
|
Found this one accidentally, to test a migration, before starting simulator, just... copy a file. You need to overwrite your app database with an older version (all CoreData data and metadata is in) The Simulator install your app there :
The CoreData Database is probably there (depends on what you do) :
You can quickly open this folder from terminal using :
Then just keep a backup before migration, and copy it over simulator one before starting your app. | |||
|
feedback
|