gpt4 book ai didi

ios - 如何在ios7中获取当前高度

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:16:57 24 4
gpt4 key购买 nike

自从我把ios更新到7之后,我不知道如何用新方法获取当前位置和高度

- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations

谁能告诉我一些示例代码如何使用此方法获取当前位置和海拔高度?

非常感谢。

最佳答案

最近的位置将在 locations 数组的末尾。

- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{
CLLocation *mostRecentLocation = [locations lastObject];
bool haveValidAltitude = (mostRecentLocation.verticalAccuracy > 0);
if(haveValidAltitude)
{
NSLog(@"current altitude is: %g meters above sea level", mostRecentLocation.altitude);
}else{
NSLog(@"current altitude is unavailable");
}
}

关于ios - 如何在ios7中获取当前高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21242925/

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