views:

27

answers:

2

In Xcode is it possible to build a clean version of my project and remove any saved property lists associated with it?

I'm refactoring my code constantly and the old property list that gets saved is causing my app to crash because the data has become old and rotten.

A: 

If you mean that you have an app installed in the simulator with data in its documents folder, then not that I know of. The easiest way I've found around this is to go into ~/Library/Application Support/iPhone Simulator/{SDK version}/Applications, find the folder for your app, and trash it.

Dave DeLong
as I feared. Bloody painful process. I'd have thought 'clean' would have done it.
Lee Probert
@Lee unfortunately, "Clean" refers to removing the compiled code, not your installed application.
Dave DeLong
+2  A: 

You can also go to the iPhone Simulator menu and select Reset Contents and Settings...

jlehr