SWIFT 对条件编译的支持

语法

//elseif 和 else 可选
#if 
  code
#elseif 
  code
#else
  code
#endif

condition的设定

  1. os(para),para可以为OSX, iOS,没有办法设定具体的版本号
  2. arch(para),para 可以为x86_64, arm, arm64, i386
  3. 自定义的编译参数,如 DEBUG,设定方法:
    Build Settings->Swift Compiler - Custom Flags->Other Swift Flags 中添加-D DEBUG

你可能感兴趣的:(SWIFT 对条件编译的支持)