プログラムが開発環境で実行されているかどうかを知る方法はありますか?Flurry Analyticsを使用していて、別のアプリIDを渡したいので、開発中にテストでデータが汚れることはありません。
私が欲しいのはこのようなものです:
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"];
明確にするために、これは私が求めているものではありません。なぜなら、私は実際のデバイスとシミュレーターを使用してテストしているからです。