CLLocationManagerDelegate 中的 UpdatedLocation 现已过时。
我将如何获得此功能以及在什么新功能调用下?
老的:
public override void UpdatedLocation (CLLocationManager manager, CLLocation newLocation, CLLocation oldLocation)
{
manager.StopUpdatingLocation ();
locationManager = null;
callback (newLocation);
}