在运行时设置位置模拟器City / GPX

时间:2016-07-13 12:58:02

标签: ios objective-c swift xcode

是否有一种方法可以在运行时以编程方式更改位置模拟器城市?例如,这将允许测试模拟伦敦或东京。

下图显示了如何手动切换位置(GPX文件)。如何在应用程序运行时以编程方式实现此结果?

enter image description here

1 个答案:

答案 0 :(得分:1)

设置位置的替代方法是通过调用“CLLocationManager”类的“位置”。在obj-c中,

+(void) load {
   // replace 'location' with 'custom_location' method
 }

然后通过简单地更改'kMockedLatitude'和'kMockedLongitude'变量,实现custom_location方法,无论您想要设置什么位置。

//Portland, USA
CLLocationDegrees kMockedLatitude = 45.52306;
CLLocationDegrees kMockedLongitude = -122.67648;

-(CLLocation *)custom_location  
{  
   return [[CLLocation alloc] initWithLatitude:kMockedLatitude longitude:kMockedLongitude];
}

这甚至可以在iOS设备中使用。