I have an a property declared in .h as
@property (nonatomic, assign) int timeSig_Numerator;
and an instance variable declared in the .h as
int mTimeSig_Numerator;
in the .m I synthesize with
@synthesize timeSig_Numerator = mTimeSig_Numerator;
I have a C function declared before the synthesize and need to use mTimeSig_Numerator. what is the best way to make the instance variable visible to my C function without passing it in as a function argument?