Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Lost completion in #import "myFile.h"

Tags:

Since I had Xcode 4.4, I have lost the completion when I want to import file on my classes. I have to write the file entirely (The problem appears only in the import scope, it works elsewhere)

Has anyone the same problem and know how to figure out ?

like image 379
booker Avatar asked Jul 27 '12 12:07

booker


People also ask

What are completion marks?

Overall, completion marks are all pass or fail and will never exceed 10% of a course's total grade, but they are also embedded within the four Achievement Categories and not a separate category.

How do you get completion marks in binding of Isaac?

Completion marks are earned by completing specific objectives in The Binding of Isaac: Rebirth. As you complete these objectives, the post-it note on the character select screen fills up with Completion Marks. If objectives are completed in Normal mode, the completion marks are solid black.

Can you unlock The Lost on a seeded run?

But The Lost also unlocks some of the best and most fun items in the game and is needed to get the final achievement, True Platinum God. Unlocking him is pretty simple if you use seeded runs, which should only take about 40 minutes. Note: You must do these in order without dying to anything else in between.


1 Answers

Go to your project --> build settings --> User Header Search Paths and add $(SRCROOT)

That works for me.

Edit (another solution) : Sometimes I lost autocompletion randomly in my import scope. I fix it by typing the double quotes #import "" before typing my class between with the autocompletion.

like image 80
booker Avatar answered Oct 03 '22 02:10

booker