语法
//elseif 和 else 可选
#if <condition>
code
#elseif <condition>
code
#else
code
#endif
condition的设定
- os(para),para可以为OSX, iOS,没有办法设定具体的版本号
- arch(para),para 可以为x86_64, arm, arm64, i386
- 自定义的编译参数,如 DEBUG,设定方法:
Build Settings->Swift Compiler - Custom Flags->Other Swift Flags 中添加-D DEBUG