Is there a straightforward way to clean up the directory where xcode deploys an app when building for the iPhone simulator? I have a sqlite database that gets copied into the Documents folder on startup if necessary. The problem is that I might change my schema, but the new database won't get copied, because one already exists.

Ideally, every time I build, it would nuke the previous contents. Is this possible, or do I have to manually do it?

Thanks.

tj

link|improve this question

47% accept rate
Does the simulator support AppleScript? – Roger Nolan Mar 28 '09 at 8:00
feedback

6 Answers

up vote 21 down vote accepted

The simulator installs apps to

/Users/<username>/Library/Application Support/iPhone Simulator/User/Applications

There are a bunch of GUID files and directories. They match up to the apps you have installed on your simulator.

You can manually delete all the files/directories in there (will remove all applications from your simulator)

I know there is some way to add scripts to the build process in XCode. Sadly I don't know how to do that. Hopefully somebody else can help with that.

Also it looks as if XCode changes the GUID it uses each build (the directory where my app sits changes between builds in XCode), so trying to delete the same directory all the time won't work. If you are only working on one app at a time then clearing out the entire directory would be an option.

Hope that helps.

chris.

link|improve this answer
feedback

What you are really trying to do is to clear out your database, if you've changed the schema. One way to do this, and it would make you happier in the long run when you start shipping version 2.0, 3.0, etc. of your app, is to check the version of your sqlite table, and if it has changed, then discard the old file and use the one in your bundle.

Finding a way to clean up the Simulator won't help the real world problem of how to clean up a customer's iPhone when you ship a new version with a new schema.

For extra points, after determining that you have encountered an old schema, you may want to copy the new database over without destroying the old one, and load any interesting data out of the old database, into the new one. Then blow away the old database. That way you can preserve your user's additions to the database.

link|improve this answer
In general, I agree with you when you are talking about release upgrades, but in the midst of development of any particular version, this is far more overhead than is necessary. Database schema can change on a per-build basis, and needing to write conversion code for every build is just wrong. – Travis Jensen Apr 4 '09 at 21:02
feedback

From Apples Dev Resources:

To set the user content and settings of the simulator to their factory state and remove the applications you have installed, choose iPhone Simulator > Reset Content and Settings.

link|improve this answer
feedback

The way I do this is to simply click and hold on the icon for my app in the simulator--then when it starts to wiggle click the black and white (x). A message will pop up asking whether you really want to delete and you just click yes. The next time you build and deploy your app it will use the new sqlite db without a hitch and you don't have to go muck around in the filesystem.

link|improve this answer
This doesn't seem to work - it doesn't ACTUALLY delete data from the simulator? – Adam Nov 2 '09 at 22:42
My mistake - this works fine (confirmed by reading the directory in the accepted answer. I'd just forgotten Apple's user-unfriendly design of NSUserDefaults (unset values aren't reported by any sensible manner) – Adam Nov 2 '09 at 22:49
feedback

it may be overkill but..

you can also use the menu and 'Reset Content and Settings...'

link|improve this answer
feedback

Things have mode around a bit now that we're in iOS5 on Lion, so here's a simple process, building on @PyjamaSam's answer.

  1. I created a script called 'RemoveSimulatorApps.command'

    # script: RemoveSimulatorApps.command
    cd '/Users/sohail/Library/Application Support/iPhone Simulator/5.0/Applications/'
    rm -rf *
  1. Be sure to replace 'sohail' with your username of course!

  2. Save this script to a directory that's ideally in your PATH, for terminal usage (say, in your .bash_login file)

  3. Make the file writable. In simplest form, you could do at the command line:

    chmod +x RemoveSimulatorApps.command

Assumptions:

  • You may want to invoke this from a keyboard favorites buttons, such as on a Logitech or Microsoft keyboard with programmable keys (hence, saving it as a .command file instead of say, .sh)
  • You are okay with blowing away everything in the iOS simulator (ideal if you're just actively working on one app)
  • All the notes from others apply about being a good upgradable app etc. (I personally found this useful nonetheless b/c I have development mode switches that reload a database in a specific state I was trying to do some consistent robustness/error handling on)
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.