gpt4 book ai didi

iphone - 不显示提示信息,如何获取用户当前所在位置的经纬度

转载 作者:行者123 更新时间:2023-11-28 19:08:09 24 4
gpt4 key购买 nike

我的客户要求在显示用户当前位置时不需要显示警报消息,以及如何在 mapview 上获取用户经纬度。

任何人都可以帮助我不在 mapview 上显示警告消息,我们怎样才能得到纬度和经度。

- (void)viewDidLoad
{
[super viewDidLoad];

locationManager = [[CLLocationManager alloc]init];
//display current location
[self.mapview setShowsUserLocation:YES];

//get the current location latitude and algitude
NSString *lati = [NSString stringWithFormat:@"%f",locationManager.location.coordinate.latitude];
NSString *lang = [NSString stringWithFormat:@"%f",locationManager.location.coordinate.longitude];
NSLog(@"lati : %@",lati);
NSLog(@"langi : %@",lang);
}

最佳答案

你不能。这是 iOS 内置的隐私考虑因素。当您第一次请求访问位置数据时,会自动显示警报。你不应该想破坏这种隐私管理。

关于iphone - 不显示提示信息,如何获取用户当前所在位置的经纬度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18418820/

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