Reputation: 3345
i wrote one app it consist of tens of classes, after some time while i am looking into my code i faced a problem, i am looking calling function but i am unable to find called function where exactly called method is???.....is there any method to find called method when we know the calling method.
Upvotes: 0
Views: 125
Reputation: 86651
In Xcode edit menu there is an item called Find
. It has a submenu of which the first item is Find in project
. Select this, type the name of the method you are looking for and press return. It will list all lines of code with that text on them. Double click one to open the corresponding file.
Upvotes: 1