gpt4 book ai didi

iphone - 我可以更改我在设备上的位置以测试用户的位置吗?

转载 作者:行者123 更新时间:2023-11-28 18:21:49 25 4
gpt4 key购买 nike

我正在使用以下代码获取用户的当前 lat loc。我想更改设备上用户的 currentLocation 以查看 map 是如何填充注释的。我想模拟应用程序测试人员在我所在的另一个国家/地区的设备上遇到的问题。对他来说, map 不会加载注释,而对我来说,它在模拟器和设备中运行良好(我们'正在使用相同的设备型号等)。我确实尝试将 currentUserLatitude currentUserLongitude 设置为我的测试仪的值,但 map 为我添加了很好的注释。

-(void)loadMap{
CLLocationCoordinate2D coordinate = [self getLocation];
currentUserLatitude = [NSString stringWithFormat:@"%f", coordinate.latitude];
currentUserLongitude = [NSString stringWithFormat:@"%f", coordinate.longitude];

NSLog(@"*dLatitude : %@", currentUserLatitude);
NSLog(@"*dLongitude : %@",currentUserLongitude);
}

-(CLLocationCoordinate2D) getLocation{
locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
locationManager.distanceFilter = kCLDistanceFilterNone;
[locationManager startUpdatingLocation];
CLLocation *location = [locationManager location];
CLLocationCoordinate2D coordinate = [location coordinate];

return coordinate;
}

最佳答案

您无法在物理设备上模拟位置。

但是,可以在模拟器和 have it claim to be in whatever location you would like 中测试您的应用程序.

关于iphone - 我可以更改我在设备上的位置以测试用户的位置吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18965089/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com