有没有在模拟器上允许位置模拟的方法?

时间:2012-11-29 16:34:06

标签: xcode ios-simulator

位置模拟在模拟器上很酷,但会妨碍我正常使用设备。

1 个答案:

答案 0 :(得分:0)

您可以使用条件if:

  1. #include "TargetConditionals.h"
  2. 以这种方式仅包含模拟器代码:

    #if TARGET_IPHONE_SIMULATOR
    //code for simulator only
    #endif
    
  3. *来源:https://stackoverflow.com/a/458388/312312