views:

173

answers:

3

Hiya.

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 ?

+1  A: 

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

Simon
+1  A: 

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

Grant Lammi
+1  A: 

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

Code Sense -> Code Completion -> Automatically Suggest

vicvicvic