iPhone模拟器 - 如何检测应用程序何时在模拟器上运行(这样可以设置测试数据)?

时间:2011-02-25 20:15:53

标签: ios iphone ios-simulator eventkit test-data

在我的iPhone应用程序代码中显示如何使用的任何示例代码:

  1. 如何检测应用程序是否刚被部署以运行到模拟器(而不是设备)[如果“已部署”不可用,那么只检测应用程序何时在模拟器上运行而不是设备)
  2. 在我的iPhone应用程序代码中,我会将设置我的测试数据的行放在模拟器中 - 这是注意我每次重新编译并推送到模拟器时都希望有效地擦除/重新安装测试数据(但是我真的不希望在模拟器中使用应用程序期间运行此代码 - 例如应该能够在模拟器中交换应用程序&然后当我在模拟器中再次启动我的应用程序时它不应该运行数据设置代码
  3. 任何其他更好的建议如何在模拟器上覆盖管理此测试数据将是好的。这里的背景是我在谈论日历中的测试数据(例如使用事件工具包),所以当我部署到我的设备时,我不希望应用程序将日历项目放入我的iPhone(对不起 - 只有1个人iPhone在这里)。

4 个答案:

答案 0 :(得分:49)

我显然使用这样的东西......

#import <TargetConditionals.h>

#if TARGET_IPHONE_SIMULATOR

// Simulator specific code

#else // TARGET_IPHONE_SIMULATOR

// Device specific code

#endif // TARGET_IPHONE_SIMULATOR

对于你的第二个问题......这样的事可以帮助你。在您的app delegate中:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  if ( ! [[NSUserDefaults standardUserDefaults] boolForKey:@"initialized"] ) {
    // Setup stuff
    [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"initialized"];
  }

  ... your code ...
}

答案 1 :(得分:12)

如果您想检查运行时(而不是使用#compiler宏编译时间),请使用以下代码:

UIDevice *currentDevice = [UIDevice currentDevice];
if ([currentDevice.model rangeOfString:@"Simulator"].location == NSNotFound) {
    //running on device
} else { 
    // running in Simulator
}

另见这个问题: How can I programmatically determine if my app is running in the iphone simulator?

答案 2 :(得分:1)

对我有用的代码块:

#if defined(__i386__)  || defined(__x86_64__)
    /* Run code if in Simulator */
#else
    /* Run code if in device */
#end

我注意到__i386__不能用于iPhone 6模拟器,所以我添加了x86_64

答案 3 :(得分:1)

快捷键5:

TARGET_OS_SIMULATOR在Swift 5中不起作用。targetEnvironment(simulator)的工作原理如下:

#if targetEnvironment(simulator)
// code to run if running on simulator
#else
// code to run if not running on simulator
#endif

Reference