I don't have the reputation to comment answers so i'll just post a new one.

Jonathan suggest here: Xcode Includes .xib files that have been deleted! that cleaning all targets and empty the caches will fix the problem with Xcode including deleted .xib files but i cannot find a way to empty the cache in Xcode 4.

Anyone know's how to do that in Xcode 4?

link|improve this question

feedback

5 Answers

up vote 58 down vote accepted

Command-Option-Shift-K to clean out the build folder. 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. (Xcode 4.2 will show you the Derived Data folder: choose Window > Organizer and switch to the Projects tab. Click the right-arrow to the right of the Derived Data folder name.)

In the simulator, choose iOS Simulator > Reset Content and Settings.

Finally, for completeness, you can delete the contents of /var/folders; some caching happens there too.

link|improve this answer
Nice, cleaning the path: Library/Developer/Xcode/DerivedData + resetting the content and setting of the simulator works! – Tieme Jun 6 '11 at 10:26
3  
Path appears to be in my home directory (note tilde): ~/Library/Developer/Xcode/DerivedData Maybe this was obvious to others, but in case someone else has the issue... – Victor Van Hee Sep 16 '11 at 10:32
1  
Hehe, being an übern00b I deleted /var/db where I found something that came from Xcode/my project. That cost me five hours of trashed journalling in the file system, repair and reinstall of Lion, etc. Be warned! :-) – Jonas Byström Nov 23 '11 at 19:55
@Jonas haha... that's kinda funny.. unless you lost serious money from it – Hisoka Jan 21 at 15:28
I have the same problem out of the blue. Have never had this issue before. I have done all of these suggestions to no avail. Delete app from device is the only solution for me. I do not want to delete the app every time I change a nib file. Has anybody found anything more conclusive for a fix? What is the /var/folders? I don't find it on my system. – Dean Davids Mar 16 at 2:34
feedback

Command-Option-Shift-K should do it. Alternatively, go to product menu, press the option key, now the option "Clean" will change to "Clean Build Folder ..." select that option.

link|improve this answer
   
Nope, too bad.. i just changed and renamed an xib file and cleaned the app as you said but it still loads fine without errors. – Tieme May 4 '11 at 15:50
feedback

I have been pulling out hair from my head because I thought that I had the same problem. When building the app I didn't get the same result on my iPhone as on the simulator.

The problem was that I had somehow made a localized version of the MainStoryboard.storyboard file. So when I ran the app on my phone it showed the danish version... and the simulator showed the english version.

Yeah I'm new! :)

link|improve this answer
I had similar problems. Did command-option-shift-K to no avail. Removed ...DerivedData, no solution. Turned out changing the top level XIB only changes the English version, and I was testing with Dutch version of the XIB. Sigh... – fishinear Feb 23 at 18:34
feedback

I found another way in addition to command+option+shift+K. In XCode 4.2 there is an organizer that can be opened from top-right icon. You can clean all archives and saved project options from there. This helped my situation (I was seeing old removed files in the mainBundle).

link|improve this answer
Yeah that's indead an easier way than cleaning ~/Library/Developer/Xcode/DerivedData manually – Tieme Apr 23 at 15:42
feedback

"Command-Option-Shift-K " worked for me.

Didn't find "Library/Developer/Xcode/DerivedData" in my path. I think it's been removed by new Xcode.

2011.12.1

Thank you for the information

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.