是否有办法知道程序是否在开发环境中运行? 我使用卷风分析器,想要通过不同的应用程序代号, 这样数据就不会在开发过程中被我的测试弄脏了。
我喜欢的是这样的:
Boolean isDevEnv = .... (is this a test in the simulator or device,
OR is it a real user that downloaded the
app through the app store?)
if (isDevEnv)
[FlurryAnalytics startSession:@"firstAppId"];
else
[FlurryAnalytics startSession:@"secondAppId"];