I have defined a macro value in Constant.h (#define OK "OK")
And I imported in a First.m file and redefined it (#undef OK, #define OK "Hi")
Then I include Constant.h in Second.m and when I access the "OK" the value is still "OK" not "Hi"
I noticed that the value only changed in First.m.
Just wondering how to change the OK value globally.
Since many .m file are acessing the OK and OK needs to be changed often according to different event
Thanks