0

I have a question about the xcode. When I write code with XCode the system requires autocompletions. For example when I Write: [NSBundle main ] it shows me [NSBundle mainBundle]. That is OK but when I write [NSBundle bundle] it doesn't show me a mainBundle message option. It only considers the beginning of the function. I want to see mainBundle in recommendations like Visual Studio. Is it possible?

Mark Schultheiss
  • 32,614
  • 12
  • 69
  • 100

3 Answers3

0

No. Xcode doesn't use fuzzy autocompletion. There is though one commercial IDE that does that (among several other nice things) but of course is not free.

Alladinian
  • 34,483
  • 6
  • 89
  • 91
0

Try AppCode. This IDE supports such autocompletion.

olegk
  • 765
  • 4
  • 13
0

I wrote an Xcode plugin that adds fuzzy matching to the built-in autocomplete. It even uses Xcode's own fuzzy matcher used in Open Quickly.

https://github.com/chendo/FuzzyAutocompletePlugin

chendo
  • 620
  • 6
  • 10