码迷,mamicode.com
首页 > 编程语言 > 详细

小结:Swift、OC语言中多target在代码中如何区分

时间:2017-04-12 18:37:23      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:set   ted   class   gets   png   release   highlight   interface   import   

一、对swift工程
经实践,网上的方法都无法成功,后来思考DEBUG宏定义方式,经实测有效,方式如下:
注意:不能把swift flags 小三角折叠后双击设置-DTarget4AppStore, 这样会自动清空之前生成或定义的宏定义
技术分享技术分享
 
 #if Target4AppStore
        self.view.backgroundColor = UIColor.yellow//效果在运行appstore target时,通过界面调试工具可看到背景图为黄色
  #else
        self.view.backgroundColor = kBGColor
#endif

 

 
 
二、对OC工程
build setting中搜索 macro,在preprocessor Macros展开状态下,对新复制出的target的debug和release下都加上宏定义。
 
技术分享技术分享
//
//  ViewController.m
//  mulTargetsTest
//
//  Created by myl on 2017/4/12.
//  Copyright ? 2017年 huatu. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
  [super viewDidLoad];
  
  
#if IS_MACRO //macao 版,Xcode缺陷:文本高亮状态不会随着切换scheme变化,但是运行起来是对的。
  #if DEBUG
    self.view.backgroundColor = [UIColor blueColor];
  #else
    self.view.backgroundColor = [UIColor brownColor];
  #endif
#elif  IS_BEIJING//北京版
  #if DEBUG
    self.view.backgroundColor = [UIColor cyanColor];
  #else
    self.view.backgroundColor = [UIColor blackColor];
  #endif
  
#elif  IS_TIANJING//天津版,还未复制出target,不会走这
  #if DEBUG
    self.view.backgroundColor = [UIColor cyanColor];
  #else
    self.view.backgroundColor = [UIColor blackColor];
  #endif
#else//广州版
  #if DEBUG
  self.view.backgroundColor = [UIColor redColor];
  #else
   self.view.backgroundColor = [UIColor orangeColor];
  #endif
#endif
  
}

@end

 

以上代码已经过实际测试,完全正确。
 
 
 

小结:Swift、OC语言中多target在代码中如何区分

标签:set   ted   class   gets   png   release   highlight   interface   import   

原文地址:http://www.cnblogs.com/Dast1/p/6700550.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!