Xcode 4 code sense is not working

XcodeXcode4Codesense

Xcode Problem Overview


I am running a "old" Xcode 3 project in Xcode 4 and code sense is not working for my own classes. I have tried following:

  • Clean/rebuild
  • Remove Derived Data
  • Installing 4.3 documentation
  • Restart

Without any luck.

Sometimes the code sense works but mostly I just get "No Completions".

Xcode Solutions


Solution 1 - Xcode

Try this:

Open Organizer then Project Tab.

Clear the "Derived Data". Xcode should re-index your project then and code sense should work. At least worked for me.

Solution 2 - Xcode

I know this is late, but for reference: http://sealedabstract.com/code/when-xcode-4s-code-completion-autocomplete-breaks/

> - Close the project, leaving XCode still running. > > - Open XCode’s Organizer window, go to the Projects Tab, select the correct project, and hit the Delete button next to “Derived Data”. > > - Quit XCode. > > - Navigate to your project’s .xcodeproject file in Finder. Right-click, choose “Show Package Contents.” > > - Leave the project.pbxproj file, but delete the project.xcworkspace file, any .pbxuser files, and the entire userdata folder. > > - Open the project in XCode. You will see XCode riding high on the CPU usage for around 10-60 seconds, depending on the size of your project. The activity window will say “Indexing” > > - When your CPU spike returns to earth, code completion will be working again.

There's a lot of deleting going on there so please be careful, but this definitely worked for me.

Solution 3 - Xcode

I've been doing this, and it's worked multiple times for me (after trying all of the above previously).

Edit: Now I just hit space, backspace (the mac version) and rebuild... works nice. Then, remember to scroll (sometimes the colors don't show up until you scroll somewhere)

  1. Find your prefix file: "ProjectName_prefix.pch".
  2. Comment out some line. (basically change it)
  3. Build your project, doesn't matter if it fails or not.
  4. Uncomment it.
  5. Build again.

I'm betting only step 2 (modify the prefix) is what does it, but these essentially get you back to running. Suddenly everything magically recolors itself and completes functions.

Good luck if that doesn't fix it, perhaps try doing this to your dependency pch files (three20 or FB api's)

Solution 4 - Xcode

Clearing the "Derived Data" only works temporarily for me. I have to do it and then restart Xcode like 3-4 times each day to get code sense working again.

I found out the real cause is in the Target's Build Settings. I moved everything from Header Search Paths to User Header Search Paths and it is fixed. In my case, the framework I'm working with is RestKit.

BTW, I came up with this because I was adding another project (QuickDialog) into my project and I was curious that it is using User Header Search Paths, but not Header Search Paths. Here is the difference between them.

Solution 5 - Xcode

You can able to fix that issue by change build settings like this, PreCompile Prefix Headers :NO

Solution 6 - Xcode

FYI, if one file doesn't have code sense but the rest of your project does, check that its added to a target. Once I did that I got code sense back in that file.

Solution 7 - Xcode

It's been ages but the answer is just to move the code into a new folder and the code sense should be working now.

This happened when I added a new Objective-C Class and the code sense doesn't work only on the newly added .m and .h files (on XCode 4 latest update during this post).

Solution 8 - Xcode

>Close all xcode windows > >Delete all your projects from xcode>window>organizer and restart your project. It will now sense and index your project properly.

Solution 9 - Xcode

I wrote about it in detail here.

Basically my fix was that with localization. I upgraded from xcode 3.2.5 to xcode 4 and then screwed around with built in interface builder and turned on localization for a XIB file accidently which placed my source files in en.lproj directory. After moving them back to Classes folder it worked perfectly.

Solution 10 - Xcode

Again, for the sake of helping others with this issue which, in my case, happened upon upgrading to Xcode 4.3.

Of course I tried the solutions offered in this post, and none of them worked. But the suggestion to move the location of the project in Finder brought back some Code Sense, but the suggestions didn't make any sense.

I ended up deleting my project and re-cloned it from the git repository.That brougt back Code Sense for me...

Solution 11 - Xcode

I open a second project in the background whenever my Xcode's code sensing stops working (it usually works the first time i open the project but after a while code sense no longer works). So what i do is to open a second project in Xcode. Xcode will start indexing the second project and magically the code sense for my main project is back.

Running Xcode 4.3.1 on Lion

Hope this helps someone.

Solution 12 - Xcode

From this comment here I was able to debug the problem on my end, it seemed to be a bad -w flag that the clang preprocessor wasn't recognizing properly. Basically, running

defaults write com.apple.dt.Xcode IDEIndexingClangInvocationLogLevel 3

in Terminal increases the verbosity of the indexer, and should help you track down issues. Open Console.app and look for messages from Xcode, the search string IDEIndexingClangInvocation helped me find them.

Solution 13 - Xcode

For me it happened simply because the file had no target membership. If the first few answers did not work for you, go to your .m file (presumably it's this file that you're having trouble with), open the Utilities view (Edit -> Utilities -> Show File Inspector) and under "Target Membership" check the target to which you want this file to belong.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionOkkuView Question on Stackoverflow
Solution 1 - XcodeSaikatView Answer on Stackoverflow
Solution 2 - XcodeChris Burt-BrownView Answer on Stackoverflow
Solution 3 - XcodeStephen JView Answer on Stackoverflow
Solution 4 - XcodeHlungView Answer on Stackoverflow
Solution 5 - XcodegowrikarthickView Answer on Stackoverflow
Solution 6 - XcodezekelView Answer on Stackoverflow
Solution 7 - XcodeBahamutView Answer on Stackoverflow
Solution 8 - XcodeSaadView Answer on Stackoverflow
Solution 9 - XcodezakishaheenView Answer on Stackoverflow
Solution 10 - XcodeinvalidArgumentView Answer on Stackoverflow
Solution 11 - XcodenewDeveloperView Answer on Stackoverflow
Solution 12 - XcodedamianView Answer on Stackoverflow
Solution 13 - XcodeAlexView Answer on Stackoverflow