Dan Rosenstark
Dan Rosenstark

Reputation: 69757

Xcode 4: List Methods By Name?

Is there any way to navigate the structure of an Objective-C file by alpha order for the methods? The combobox (in the Jump Bar) that shows all the methods is not much more helpful than looking through the file.

Upvotes: 0

Views: 1263

Answers (2)

WrightsCS
WrightsCS

Reputation: 50697

As per the Jump Bar Help Page:

"Tip: Hold down the Command key when selecting a level in the path menu to view its items alphabetically."

Screenshot for tip in Jump Bar Help Page

Upvotes: 6

Simon Whitaker
Simon Whitaker

Reputation: 20566

If it's a file implementing a class then in the Symbol Navigator (CMD+2) you can expand the class you're interested in and the class's member variables and methods are listed in alphabetical order.

Upvotes: 3

Related Questions