I have two simple constants:
NSString
andunichar
,
defined as follows:
static NSString * const string = @"\u2022";
static unichar const character = 0x2022;
I'd want to have the number 0x2022 defined in one place.
I tried a lot of combinations (#
and ##
, also CFSTR
macro) with no success.
Can it be done?