Possible Duplicate:
How can I make auto-complete display a list in Xcode
I’m just learning Objective-c and how to use Xcode, coming from a background of Python. In python, when using the interactive prompt, you can do something like this:
list = []
list.**tab**
pressing tab displays all the methods one can do on the list, like append things, et cetra.
I would like to know if there is a way to do something like this in Xcode, as it would save me a lot of time. Thanks.
You could hit the esc key and it’ll show you list of methods. Also, typing will generally bring up some suggestions when Xcode believes there are matches.