Reputation: 17043
When I type class or object name and press Esc I can see the list of all available methods:
Is it possible to get this window with only current class methods, not inherited from parent? Some shortcut or other convenient way?
Upvotes: 0
Views: 87
Reputation: 107121
There is no option for doing that.
As an alternative, select the Symbol Navigator tab (cmd+2) in XCode, and choose a class.
It will show the methods & properties of that class only.
Upvotes: 1