Xcode: view references for a variable?

Posted by David.Chu.ca on Stack Overflow See other posts from Stack Overflow or by David.Chu.ca
Published on 2010-05-14T04:32:06Z Indexed on 2010/05/14 4:34 UTC
Read the original article Hit count: 207

Filed under:

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?
   ...
}

© Stack Overflow or respective owner

Related posts about xcode