检测应用程序是否在开发模式下运行

发布于 2024-11-15 03:06:22 字数 41 浏览 2 评论 0原文

有谁知道在代码中检测应用程序是否在开发模式或生产模式下运行的好方法?

does anyone know a good way to, in code, detect if the app is running in development mode or production mode?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泛滥成性 2024-11-22 03:06:22

这完全取决于您如何在开发和生产模式之间进行选择。默认情况下,当您在调试下运行应用程序时,Xcode 4 会设置 DEBUG 标志。您可以像这样创建条件代码:

#ifdef DEBUG
  NSLog(@"Only log when in debug");
#endif

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:

#ifdef DEBUG
  NSLog(@"Only log when in debug");
#endif
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文