What does Xcode do when indexing?

I understand the principle of indexing in general. I would like to understand in more detail which aspects of the Xcode project are indexed, what functionality would be affected if it was disabled, and what events trigger it to load / reload indexes.

+4
source share
2 answers

Indexing in Xcode Helps

  • speed up the search within the project,
  • autocompletion (if, for example, you add a method to your class, this will help you use it in other parts of your project in seconds, without remembering its full name, etc.),
  • offers

Trigger events : e.g.

  • creating your own class
  • structure implementation
  • import module
  • connection segue
  • .

.

/, .

+3

,

  • , Alt.

, , , .

.

+3

Source: https://habr.com/ru/post/1651926/


All Articles