Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望我的 XCode Objective-C 项目能够检测到它正在构建的配置。我怎样才能做到这一点?
您可以拥有每个配置的宏定义。打开您的项目设置,从Configuration下拉菜单中选择您的配置,然后转到Preprocessor Macros。对于 Debug,我建议定义宏_DEBUG,对于发布,我建议定义_RELEASE,因为这些是使用的典型。这些作为选项传递给编译器-D,例如-D_DEBUG.
_DEBUG
_RELEASE
-D
-D_DEBUG
您还可以将-D选项直接放入“其他 C 标志”设置中。