iPhone编译依赖于目标

时间:2010-12-18 17:18:50

标签: iphone objective-c xcode target

我有多个目标的项目有多个客户端但是大部分应用程序非常相同,到目前为止我能够通过在运行时读取的属性列表来控制不同的程序流。

一个客户有一个特定的视图,我需要先显示所有其他人。

我的问题是我遇到了构建错误(实际上是链接错误),因为控制器类不在其他客户端目标中,我也不想包含它。所以我一直在寻找一些编译时控件。

我正在寻找像

这样的东西
#ifdef client1target
     ... do something
#else
     ... do something else
#endif    

我遇到麻烦的程序部分就像这样看

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    

    NSString *client = [myEnvVariables getShortName]; // In this class method I read the plist

    if ([client isEqualToString:@"CLIENT1"]) {

        Client1SpecificController *mm = [[Client1SpecificController alloc] initWithNibName:@"Client1SpecificView" bundle:nil];
// here happens the compile error because Client1SpecificController is not known at other targets

        mm.view.frame = CGRectMake(0,20,320,460);

        [window addSubview:mm.view];
        [window makeKeyAndVisible]; 

    } else {

        [window addSubview:navigationController.view];
        [window makeKeyAndVisible]; 
    }

    return YES;
}

错误看起来像这样

undefined symbols:
  "_OBJC_CLASS_$_Client1SpecificController", referenced from:
      objc-class-ref-to-Client1SpecificController in myAppDelegate.o

1 个答案:

答案 0 :(得分:9)

打开一个目标的设置,然后转到“预处理器宏”,设置您喜欢的任何内容,例如CLIENT_ONE

然后您可以在代码中使用它

#ifdef CLIENT_ONE
    #import "ClassOneController.h"
#else
    #import "OtherController.h"
#endif

以下是目标的构建设置的屏幕截图: For This Example add CLIENT_ONE = 1