Xcode: code loses syntax coloring Xcode: code loses syntax coloring xcode xcode

Xcode: code loses syntax coloring


1.) Go to Project --> Build Settings --> Header Search Paths

2.) Add "$(SRCROOT)/**"

3.) Close and reload the project

4.) Go to Xcode --> Window --> Organizer --> Projects --> $YourProject --> Delete Derived Data

5.) Wait a moment until XCode rebuild all indicies


To get more information activate verbose logging:

1.) Increase Xcode log level in Terminal app:defaults write com.apple.dt.Xcode IDEIndexingClangInvocationLogLevel 3

2.) Open Console app. Search for "xcode"

3.) I saw "file not found" errors for header files mentioned in the pch file (therefore the fix above)


I had the same issue with a project that was fine in Xcode 3 and for which the syntax highlighting and code completion has broken in Xcode 4. It took me the better half of the day to figure it out but I found that the following steps will reproduce / fix the issue 100% for me.

After trying all the aforementioned solutions to no avail, I tried creating the project from scratch and reimporting every file and folder painstakingly. Every time I imported a couple of files I checked and syntax highlighting still worked. Even after the last few of them it still did. Then I hit build which failed because I forgot to include a couple of common header files in the project .pch file that were there in the old project. And that was when CodeSense broke again.

After further investigation we found that if you import a header file that in turn imports the same framework header file than the .pch already does, then CodeSense will break. The same setup did not cause any issues in Xcode 3.

Example:

project.pch

#import <Foundation/Foundation.h>#import "projectConfig.h"

projectConfig.h

#import <Foundation/Foundation.h>#import "one.h"#import "two.h"

So by removing the wholly unnecessary

#import <Foundation/Foundation.h>

directive from the 'projectConfig.h' you can fix the highlighting and code completion will come back for you as well. If your issue is the same as mine that is.


Just select the file who lost the syntax coloring , press Editor > Syntax Coloring > ( choose your language (Objective c++ for ex) instead of 'Default'