kakyo
kakyo

Reputation: 11600

Xcode: Tool for finding symbol references as in Visual Assist for Visual Studio?

I'm very used to the Find References feature in Visual Assist for Visual Studio, which finds all references to a variable, function, or macro. It's much better than text keyword search for debugging or code reading.

I can't find a similar tool on Mac.

Xcode doesn't seem to have such a feature. I wonder if there is an equivalent 3rd-party tool on Mac for this purpose??

I think that in theory, one can write a cross-platform one using ctags and cscope. But I don't want to invest time into it now.

Upvotes: 1

Views: 1318

Answers (1)

enderland
enderland

Reputation: 14145

Using X-Code 3.2.5

  • right click on an item in the code
  • "Find in Project"
  • "Find as Symbol"

Upvotes: 2

Related Questions