I mixed some C++ codes with Objective-C in class with .mm extension.
I synthesized some variables in Objective-C, and I want to retrieve those variables in C++ methods. How to do that?
I tried [self aVariable], this->aVariable to retrieve the synthesized variables, but failed.