I need to declare two different constants in my app one is a simple string, the other needs to be a uint32.
I know of two different ways to declare constants as follows
#define VERSION 1; //I am not sure how this works in regards to uint32.. but thats what I need it to be.
and
NSString * const SIGNATURE = @"helloworld";
is there a way to do the version which should be a uint32 like the nsstring decliration below?
for instance something like
UInt32 * const VERSION 1;
if so how? if not, how do i make sure the #define version is of type uint32?
any help would be appreciated