0

I have snow leopard and I'm building a cpp Application with xcode.

I would like to be able to get proper code completion with xcode, and by that i mean the following:

std::string f;
f.

just when I type f. i would like to see all the relevant functions to that string class. is it possible in xcode ?

ufk
  • 30,912
  • 70
  • 235
  • 386

3 Answers3

1

You just need to press the ESC key to get the code completion menu to show.

Cromulent
  • 3,788
  • 4
  • 31
  • 41
1

It may seem counterintuitive but press the ESC key after the period.

Grant Lammi
  • 1,324
  • 11
  • 5
1

If you want the completion menu to display automatically, you can also set that in your preferences:

Code Sense -> Code Completion -> Automatically Suggest

vicvicvic
  • 6,025
  • 4
  • 38
  • 55