Reputation: 143
how do I find in XCode all caller functions of a specific function like eclipse's Call Hierarchy
Upvotes: 8
Views: 3690
Reputation: 1411
Since the release of XCode 4.4, this functionality exists and is called "show related items". There are multiple ways of accessing the pop-up menu that will allow you to view all callers and callees, among other things.
The fastest way is:
You can also go View->Standard Editor->show related items or press the tiny button just left of the arrow buttons in the line just above the editor window (where it shows your currently selected file and method).
Upvotes: 13