我正在開發GPS應用程序。 你知道如何檢測移動設備的速度嗎?CLLocation速度
其實,我需要每2秒檢測一次速度。
我知道didUpdateToLocation
當位置改變時調用方法。
- (void)locationManager:(CLLocationManager *)manager
didUpdateToLocation:(CLLocation *)newLocation
fromLocation:(CLLocation *)oldLocation
但我認爲這種方法是不適合我的問題。
那麼,我需要在2秒內檢查[CLLocationManager location]
的速度嗎?
有什麼建議嗎?
在此先感謝。
從兩個選項(準確性而言)哪一個更好? – 2011-10-08 18:10:13
getDistanceFrom已折舊。替換CLLocationDistance distanceChange = [newLocation getDistanceFrom:oldLocation];與CLLocationDistance distanceChange = [newLocation distanceFromLocation:oldLocation]; – Wes 2013-04-16 01:27:00