MKMapview
current user location not fire in iOS-8
,previous iOS-7
& iOS-6
are working fine.
self.
In ios 8 Authorization is required as below
NSString * osVersion = [[UIDevice currentDevice] systemVersion];
if ([osVersion floatValue]>= 8.0 ) {
[_CLLocationManager requestAlwaysAuthorization]; //Requests permission to use location services whenever the app is running.
// [_CLLocationManager requestWhenInUseAuthorization]; //Requests permission to use location services while the app is in the foreground.
}
[_CLLocationManager startUpdatingLocation];
And you need to add two keys in the plist
1.NSLocationAlwaysUsageDescription
2.NSLocationWhenInUseUsageDescription