Running into a bit of an issue.
This is my first time really dealing significantly with an AppDelegate.h/.m file.
I've declared a property @property float centerFreq
in AppDelegate.h. Then I synthesize it in AppDelegate.m like so: @synthesize centerFreq = _centerFreq
. However, when I try to actually use centerFreq
later on in AppDelegate.m, I get the error "Use of undeclared identifier 'centerFreq'". I don't understand why I can't use this variable anywhere in my .m file.