tags:

views:

86

answers:

1

I am new to Xcode. I am not sure if there is a way to view a variable's references just like "Find all references" in Visual Studio by right click on a var?

For example, in my .h file, I would like to know or view all the references for property isSet:

@interface MyInterface {
   ...
   BOOL isSet; // view all references to this var?
   ...
}
A: 

Try using: Find in project -> As symbol context menu. Sometimes you may want to search as definition instead.

Casebash