Hey, XCode newbie here. I'm used to programming in a lot of environments and XCode isn't one of them. One thing that most environments support is having a contextual menu with a list of methods and class variables when you type the dot operator.
E.g.
When I type:
How can I do this in XCode? I'm tired of going into the documentation manually.
E.g.
When I type:
A box pops up and lists all of the members of that class.String myString = "LOL";
myString.
How can I do this in XCode? I'm tired of going into the documentation manually.