Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

up vote 172 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.

share|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
4  
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 – Henley Chiu Jan 21 '12 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 '12 at 2:34
show 3 more comments

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.

share|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

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).

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

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! :)

share|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 '12 at 18:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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