在我的应用程序中,我在Settings.bundle
中定义了一个仅用于调试目的的选项。
是否有办法将代码隐藏在代码中,因为应用程序正在生产中,而无需手动删除Settings.bundle/Root.plist
中的选项?
以下内容:
#ifdef DEBUG
// Remove the option from the settings bundle
#else
// Show the option in (or don't actually remove the option from) the settings bundle
#endif
谢谢!
答案 0 :(得分:1)
有几个选择:
Run script
修改Settings.bundle,为单个目标添加DEBUG
配置部分,检查CONFIGURATION
变量。答案 1 :(得分:0)
我几乎可以肯定没有办法做到这一点。