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?
Asked
Active
Viewed 316 times
0

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

Sehmus GOKCE
- 53
- 6
-
for few things you can use code-snippets – Anoop Vaidya Apr 03 '13 at 14:28
3 Answers
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
-
Thanks for all replies I tried AppCode but is there any possibility to add this property to Xcode ? – Sehmus GOKCE Apr 08 '13 at 21:36
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.

chendo
- 620
- 6
- 10