Hello
I declare some constants in a header file which need to be different depending on whether it is an iPad or an iPhone app. How would I do this?
i.e
#ifdef ISIPAD
static NSString myconst = @"ipad!";
#else
static NSString myconst = @"iphone!";
#endif