Suppose a define like this
#define myDate [NSDate date]
every time I use it, it gives me the current date, what is ok.
What I want is to store the date the code was compiled. Can I do that with defines or using any other way?
I want the date to be hard stored in the code.
Ok I know I can store the date as string, this is not what I want.