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.

link|improve this question

80% accept rate
feedback

2 Answers

up vote 2 down vote accepted

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

link|improve this answer
(the 1.0 version of the app is in the .ipa I used to submit to the App Store) – nielsbot Apr 29 '11 at 5:16
you think it's ok if i just use the codebase from the first version and install it on my phone and then install the new version, then check the db? – marchinram May 1 '11 at 4:20
yeah..that would work too. delete the app, install 1.0, then build and run the new version. It's super convenient to have the 1.0 handy in iPhone Config Util though--you can reinstall quickly anytime while keeping the new version of your app in Xcode... – nielsbot May 1 '11 at 7:22
I'm not sure what the IPhone Config Util is, can you provide a link for it. – marchinram May 1 '11 at 23:21
2  
sure. it's for "enterprise" types. It lets you install/remove apps from a phone from your library (and other things). It's good for quickly installing an .ipa: apple.com/support/iphone/enterprise – nielsbot May 2 '11 at 4:20
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 : "/Users/<username>/Library/Application Support/iPhone Simulator/<iOS Version>/Applications/<Some UUID>/"

The CoreData Database is probably there (depends on what you do) : "/Users/<username>/Library/Application Support/iPhone Simulator/<iOS Version>/Applications/<Some UUID>/Documents/whatever.sqlite3"

You can quickly open this folder from terminal using :

open "`find ~/Library/Application\ Support/iPhone\ Simulator/<iOS Version> -name '<your.app>'`/../Documents"`

Then just keep a backup before migration, and copy it over simulator one before starting your app.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.