Does intellisense work in Xcode?

I'm a noob for Xcode, so I'm sorry that might be a dumb question. Xcode seems to be doing intellisense (or code completion). When I enter:

[self setT 

it offers setTitle because it is the first matching one. Is there a way to make it work a little more than Visual Studio, where you get a drop-down list of available methods / properties / etc ...?

+4
source share
2 answers

You can press "Esc" for a list of offers.
You can also enable automatic offers in the settings.

+9
source

Fn + Esc will display a list of them, and you may need to enable it in the settings

This is not always context sensitive (or easily confused in context)

But it still works

+3
source

All Articles