XCode 7 autocomplete not working as expected

It seems that XCode 7 (beta) is not getting auto-completion. In my case, this does not completely terminate my Parse objects ...

PFQuery(className:"User").getObje // Doesn't propose any completion, compilation works well

      

Has someone solved this?

+3


source to share


1 answer


I ran into this problem in xcode 7 beta 2. The solution is to tell xcode the directory where the infrastructure is located. You can do this by clicking on your project, then choosing Build Options and search for "wireframe search path" after that double click on the right side of the line and click the plus sign and add the directory path.



NOTE: DO NOT choose a recursive path. It won't work. just indicate EXACTLY in which directory the analysis structure that is used in your project is located.

+8


source







All Articles