NSInternalInconsisten Delegate must respond to locationManager:didUpdateLocations
I was getting this error and this fixed it.
//4.0
func locationManager(manager: CLLocationManager!,
didUpdateLocations locations: [AnyObject]!) {
//4.2
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
If this helped you, share and pass it on! 😀 ➡️ 🐦

