检测应用程序是否在开发模式下运行
有谁知道在代码中检测应用程序是否在开发模式或生产模式下运行的好方法?
does anyone know a good way to, in code, detect if the app is running in development mode or production mode?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这完全取决于您如何在开发和生产模式之间进行选择。默认情况下,当您在调试下运行应用程序时,Xcode 4 会设置
DEBUG
标志。您可以像这样创建条件代码:That depends entirely on how you choose between development and production mode. Xcode 4, by default, sets the
DEBUG
flag when you are running the app under debug. You can create conditional code like so: