I have just upgraded to the new Xcode 4 and the code is not colored has it should be. I am trying to use a project that I created on Xcode 3.

For instance, the string 'NSString' is not colored in my custom code, but when I switch to Apple's code (NSString.h for ex.) everything is well colored.

How can I fix that?

Thanks a lot, Martin

link|improve this question

2  
Are you getting any errors when building? – epologee Mar 19 '11 at 22:39
eplogee has a good point: it's possible Xcode is not recognizing symbols, which can be a symptom of a screwed up project. – Joshua Nozzi Mar 19 '11 at 22:58
I'm getting some warnings. Warnings can cause my problem? – MartinMoizard Mar 19 '11 at 23:16
MartinMoizard: No, errors. The syntax highlighter should work as long as the code compiles (specifically, as long as it is syntactically valid). You should fix those warnings, but for other reasons. – Peter Hosey Mar 20 '11 at 0:51
Is your prefix.pch file properly formatted ? I had tabs inside mine and it prevented the syntax coloring and autocompletion from working properly. – Luzal Mar 23 '11 at 10:09
show 2 more comments
feedback

7 Answers

up vote 30 down vote accepted

Open the Organizer (Window > Organizer) and select the Projects mode. Select your project in the left-hand view and then click the Delete… button for the project's Derived Data.

This will delete the code sense index for the project and force Xcode to rebuild the index, which should fix the problem.

link|improve this answer
It's working but when I restart Xcode everything is broken again – MartinMoizard Mar 21 '11 at 7:14
That worked for me, thanks. – Darmen May 4 at 4:21
feedback

I managed to find very useful advice how to solve this problem here: http://blog.slidetorock.com/xcode-4-code-sense-autocompletion-problems

link|improve this answer
feedback

I got it to work by prefixing all my project search paths with "$(SOURCE_ROOT)/" instead of just using a project relative path. Eg "Include" becomes "$(SOURCE_ROOT)/Include".

Do this and then force a rebuild of the index by deleting the projects derived data from the organizer.

link|improve this answer
I tried to do this, but now Xcode shows no Derived Data directory in the Organiser and the "code sense" doesn't even detect classes it used to! Xcode 4 is acting very broken, but only on iOS projects, not Mac OS X projects... – Andrew Wilcox Sep 7 '11 at 19:34
Nevermind! I missed the bit that I needed to have quotes around it -- the directory containing my code has spaces in the path -- and now it works flawlessly! Thanks for this. – Andrew Wilcox Sep 7 '11 at 20:27
feedback

Try Product -> Clean and then Product -> Build

link|improve this answer
1  
I already tried that. It is not working. – MartinMoizard Mar 20 '11 at 8:55
feedback

Remove the files from your project (just remove, don't delete them!) and re-import them.

link|improve this answer
1  
I just tried it, it didn't work... – MartinMoizard Mar 20 '11 at 10:05
Ugh, better solutions than this—especially on a big project. – bentford Mar 14 at 16:19
feedback

Its possible that the permissions on the folder where Xcode stores the code-sense cache is broken. If the cache cannot be correctly written or read when you launch Xcode, it will behave as you describe.

Try locating the folder (you can locate it in the organizer. Hit the arrow next to the path.) and reset its permissions in the Get Info dialog.

link|improve this answer
feedback

After trying most, if not all, of the steps above, I have succeeded in restoring my colorful Xcode eye candy by finding and deleting (in Finder) all of the derived data created from my project (there were several folders for my project that were lingering even after deletion from the Window > Organizer menu).

My project's folders that needed deletion were located in ~Library/Developer/Xcode/DerivedData

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.