---
title: "locationManagerDidResumeLocationUpdates(_:)"
framework: corelocation
role: symbol
role_heading: Instance Method
path: "corelocation/cllocationmanagerdelegate/locationmanagerdidresumelocationupdates(_:)"
---

# locationManagerDidResumeLocationUpdates(_:)

Tells the delegate that the delivery of location updates has resumed.

## Declaration

```swift
optional func locationManagerDidResumeLocationUpdates(_ manager: CLLocationManager)
```

## Parameters

- `manager`: The location manager that resumed the delivery of events.

## Discussion

Discussion When you restart location services after an automatic pause, Core Location calls this method to notify your app that services have resumed. You are responsible for restarting location services in your app. Core Location does not resume updates automatically after it pauses them. For tips on how to restart location services when a pause occurs, see the discussion of the locationManagerDidPauseLocationUpdates(_:) method.

## See Also

### Pausing location updates

- [locationManagerDidPauseLocationUpdates(_:)](corelocation/cllocationmanagerdelegate/locationmanagerdidpauselocationupdates(_:).md)
