1

I've created a project in Xcode, added a splash screen then deleted it. Now when I create a new project with the same name - the splash screen is automatically used.

My guess is this is due to a reference from a previous project? How do I clear this stuff out for good?

Dharman
  • 30,962
  • 25
  • 85
  • 135
Henry
  • 1,025
  • 1
  • 10
  • 19

1 Answers1

0

You have to clean your project.

Go to Product -> Clean.

CristiC
  • 22,068
  • 12
  • 57
  • 89
  • Just found my answer here: http://stackoverflow.com/questions/5714372/how-to-empty-caches-and-clean-all-targets-xcode-4 I did what matt said "Even better, quit Xcode and clean out Library/Developer/Xcode/DerivedData manually. Remove all its contents because there's a bug where Xcode will run an old version of your project that's in there somewhere." – Henry Jun 11 '11 at 06:52