I have an app which is using CLLocationManager in background and in foreground Mapkit to show the users location. I have no BackgroundModes activated. So if my app goes in background I stop show user Location with [mapview setShowsUserLocation:NO]. And in appDelegate I start LocationManager and stop it every 30s with [locationManager startUpdatingLocation] and [locationManager stopUpdatingLocation] (no worries about battery drain in this moment) to get the user location in Background. So lets say the locationManager is 5seconds on and 25seconds off. This 25 seconds the location services indicator should be away, right? But it isn't. Even if I didn't tell the LocationManager to Start the indicator is there all the time. Killing the app doesn't help, only to turn location services off in the settings. But if I turn it back on then the indicator will be there again all the time.
I tried everything in different posts even in these: Locationservice Indicator stays "on" Location services don't stop when application is terminated
And I'll never call locationManager=nil or release it. So crazy.. can everybody help me pls?
Update: So this drives me really crazy. Stuck on this since couple of days. And only tested it on my real iPhone. Now I tried it with iPad and iPhone Simulator and on both devices it is as I expected to be: 5 seconds the indicator is on and 25 seconds the indicator is away, when app is in background. So is it a bug on my real phone or do anybody have some suggestions? I have 5.1.1 on it and a jailbreak but this should not affect it!?
Thanks for any help :)