获取当前位置后如何停止更新位置

获取当前位置后如何停止更新位置

本文介绍了获取当前位置后如何停止更新位置?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Parse并与geoPointForCurrentLocationInBackground配合使用,我可以在收到位置信息后立即停止更新,而无需手动将其停止。

I'm using Parse and with geoPointForCurrentLocationInBackground I can stop updating once a location is received without having to manually stop it.

如何立即停止更新位置信息我使用CLLocationManager接收到位置信息之后吗?

How do I stop updating location immediately right after I receive location using CLLocationManager?

编辑

我知道[自我。 locationManager stopUpdatingLocation];停止它。
我真正要问的是,我怎么知道我是第一次收到位置信息,然后立即将其停止?

I know [self.locationManager stopUpdatingLocation]; stops it.What I'm really asking is, how do I know I've received location for the first time then stop it immediately?

推荐答案

获取位置后,请使用以下方法:

After getting your location, use this method:

[self.locationManager stopUpdatingLocation];
self.locationManager = nil;

这篇关于获取当前位置后如何停止更新位置?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 01:03