我想在模拟器上进行测试,如果 iPhone 达到特定速度,就会触发一个功能。所以问题是如何以特定速度模拟 iPhone 移动?使用 gpx 文件?
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation{
double gpsSpeed = newLocation.speed;
if (gpsSpeed > 30) {
//myLogic
[SomeClass function];
}
}