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