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 ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.