views:

281

answers:

2

I am a noob to XCode, so forgive what could be a dumb question. It seems like XCode kind of does intellisense (or code completion). When I type in:

[self setT

it suggests the setTitle because its the first matching one. Is there a way to make it work a bit more like Visual Studio where you get a dropdown of available methods/properties/etc...?

+3  A: 

You can press "Esc" for a list of suggestions.
You can also turn on automatic suggestions in the preferences.

weichsel
+2  A: 

Fn + Esc will bring up a list of them, and you may have to enable it in preferences

It's not always context sensitive (or gets confused about context easily)

But it still works

CVertex