Conditional Compilation - Check Scheme

↘锁芯ラ 提交于 2019-12-18 07:17:12

问题


In a Swift project before I've been able to perform a simple compiler check to see which scheme is running, then conditionally include code or not. For example:

#if MyScheme
    Add code here
#endif

But for some reason, in my Objective-C project, this doesn't seem to be working. Should this work the same way? Or does the Swift compiler have some advancements which allow this kind of behaviour?


回答1:


Use #ifdef

//example for debug scheme
#ifdef NDEBUG
   Add code here
#endif

And you can define your preprocessor macros here

Hope this helps



来源:https://stackoverflow.com/questions/45659435/conditional-compilation-check-scheme

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!