Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Monosij Bagchi
Courses Plus Student 2,417 Pointsfunc locationManager(manager: CLLocationManager!, didUpdateLocations locations: [AnyObject]!) is not been called
I was trying to build an application in Xcode 6.3, which will detect the current location and pass the latitude and longitude to an API. I put a breakpoint in func locationManager and its not been called.
Here is the code:
import UIKit import CoreLocation
override func viewDidLoad() { super.viewDidLoad()
self.locationManager.delegate = self
self.locationManager.desiredAccuracy = kCLLocationAccuracyBest
self.locationManager.startUpdatingLocation()
self.locationManager.startMonitoringSignificantLocationChanges()
self.locationManager.requestWhenInUseAuthorization()
func locationManager(manager: CLLocationManager!, didUpdateLocations locations: [AnyObject]!) { var localValue:CLLocationCoordinate2D = manager.location.coordinate println("locations = (localValue.latitude) (localValue.longitude)") locationManager.stopUpdatingLocation() }
2 Answers

Meek D
3,457 PointsDid you make sure the you include those two string into the plist ....
NSLocationWhenInUseUsageDescription
NSLocationAlwaysUsageDescription

Konstantin Mishukov
7,707 PointsI have the same problem, this function is not being called. I tried everything.
Swift 2.0
Monosij Bagchi
Courses Plus Student 2,417 PointsMonosij Bagchi
Courses Plus Student 2,417 PointsYes these strings are added , still no luck
Meek D
3,457 PointsMeek D
3,457 Pointsdid you import the delegate class for the CoreLocation ?