Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a generic header file that I include in every project. Among other things, it defines a preprocessor macro for easily obtaining a reference to the app delegate. The problem is, the class name of the app delegate changes from project to project, as it includes the product name (AppDelegate). Therefore I wonder if it's somehow possible to use ${PRODUCT_NAME}, or a similar macro construct, in header files?

share|improve this question
I suppose you'll have to create a custom runscript which will replace it in your header file. – Nick Weaver May 8 '11 at 9:26

1 Answer

up vote 5 down vote accepted

Set Preprocessor Macros in Xcode Build Settings.

APPDELEGATE_CLASS=$(PRODUCT_NAME)AppDelegate

In xcconfig,

GCC_PREPROCESSOR_DEFINITIONS = APPDELEGATE_CLASS=$(PRODUCT_NAME)AppDelegate

Then you can use APPDELEGATE_CLASS macro in your code.

@interface APPDELEGATE_CLASS : NSObject <UIApplicationDelegate> {
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.