Contents

locationManager(_:didUpdateLocations:)

Tells the delegate that new location data is available.

Declaration

optional func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation])

Parameters

  • manager:

    The location manager object that generated the update event.

  • locations:

    An array of Cllocation objects containing the location data. This array always contains at least one object representing the current location. If updates were deferred or if multiple locations arrived before they could be delivered, the array may contain additional entries. The objects in the array are organized in the order in which they occurred. Therefore, the most recent location update is at the end of the array.

Discussion

Implementation of this method is optional but recommended.

Topics

Related Documentation

See Also

Receiving location updates