Tagged Questions

The CLLocationManager class defines the interface for configuring the delivery of location- and heading-related events to your application

learn more… | top users | synonyms

21
votes
2answers
7k views

Behaviour for significant change location API when terminated/suspended?

This is the section from the CLLocationManager documentation describing the app behavior with startMonitoringSignificantLocationChanges: If you start this service and your application is ...
14
votes
2answers
846 views

Can we turn on/off the GPS programatically in iPhone?

I want to know can we turn on/off the GPS programmatically in iPhone?
10
votes
2answers
146 views

Can we launch setting screen any no of time in iPhone to enable the GPS?

I have tried the launch the settings of iPhone in my application using the call CLLocationManager *locationManager = [[CLLocationManager alloc] init]; locationManager.delegate = self; ...
8
votes
1answer
6k views

How to handle “Don't Allow” for location manager?

I haven't think of this yet now . Till now whenever device was asking me use location update I was allowing it . But when now I am not allowing then it the location manager gives me kclErrorDenied ...
7
votes
3answers
552 views

Trigger significant location change manually

Is there a way to manually tell the device to dispatch a significant location change notification that will wake up any applications registered for this notification? This is for testing only, and I ...
7
votes
0answers
629 views

MapKit/Location Manager crashes app when unloading view

I has a bug where my application crashed "EXC_BAD_ACCESS" when I hit the back key on my navigation bar and the view unloaded that had a MapKit (mapView) and used the Location Manager. Tried for days ...
5
votes
2answers
111 views

iPhone:Core Location popup issue

When I install my app in iphone and run first time then it ask user permission for core location service. Here is the image for simulator. In my app, my first view of application needs current ...
5
votes
1answer
684 views

how to tell an iOS device to stop remembering / forget location services preference for a specific app

I want to test the behavior of a "first-time" app install with regard to location services. The problem is, my iPhone 4 Settings app "remembers" my app's location services preference, even after I ...
5
votes
1answer
415 views

CLLocation ask again for permission

Currently my application asks only once for permission to use the current location. If the user doesn't allow, he isn't ask again unless he resets location warning in the general settings. I would ...
5
votes
6answers
2k views

UIAlertView like “Turn On Location Services to allow maps to determine your location”. Settings + Cancel

I Want to emit this alert: Turn On Location Services to allow maps to determine your location I need both "Settings" and "Cancel" exactly like the "maps" application. "Settings" should open ...
5
votes
2answers
2k views

locationServicesEnabled test passes when they are disabled in viewDidLoad

I have location services disabled for my application in the settings panel. I run a test in viewDidLoad in my view controller to see if they are enabled: if([CLLocationManager ...
5
votes
3answers
2k views

how can I show compass/heading on mapkit mapview

on the iPhone 3GS in the "Maps" app you can click the icon which usually shows your position twice and the blue dot gains what looks like a beam from a headlamp, basically showing you the direction ...
4
votes
5answers
52 views

Indoor GPS presentation

Whenever we go to present our Android/iOS apps to clients that use GPS, we always get incorrect GPS data (indoors and our apps fallback to Network location). Is there a quick way to 'fudge' GPS data ...
4
votes
4answers
189 views

how to return multiple values from a method

I have -(CLLocationCoordinate2D) method, I want to return multiple locations from that method (those locations are using in another method) my method looks like this, -(CLLocationCoordinate2D) ...
4
votes
1answer
2k views

CLLocationManager and accuracy issues - any experiences?

So I am dealing with some accuracy issues with iPhone GPS. I have an app which uses location. In the delegate method locationManager: didUpdateToLocation: fromLocation: I am being returned a ...
4
votes
2answers
557 views

Battery drain of iPhone while using location services

It would be great to know what the battery drain rate is for different accuracy settings for the iOS standard location service while it is updating location constantly (I'm not talking about the ...
4
votes
9answers
5k views

CLLocationManager on iPhone Simulator fails with kCLErrorDomain Code=0

CLLocationManager on iPhone Simulator is supposed to fake Cupertino (isn't it?) but it does NOT, it fails with kCLErrorDomain Code=0 instead. LocationManager's delegate receives the message ...
4
votes
2answers
1k views

Why the CLLocationManager delegate is not getting called in iPhone SDK 4.0?

This is the code that I have in my AppDelegate Class - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { CLLocationManager ...
4
votes
1answer
3k views

iPhone Development - CLLocationManager vs. MapKit

If i want to show userLocation on the map, and at the same time record the user's location, is it a good idea to add an observer to userLocation.location and record the locations, OR should i still ...
4
votes
1answer
2k views

MKMapView and CLLocationManager

I want to use a MKMapView to display the user current location using the default breathing blue pin and I want to record the user movement at the same time. Is there any way that I could use the GPS ...
3
votes
1answer
39 views

Possible for CLLocationManager to be affected by other apps?

I am running into a very strange situation with an app I have that uses CLLocationManager to get the user's current location. I am using a wrapper class that is very similar to Apple's ...
3
votes
1answer
76 views

Will an iOS app that monitors signficant location changes be restarted on device reboot?

From the Core Location documentation: The regions you register with the location manager persist between launches of your application. If a region crossing occurs while your application is not ...
3
votes
2answers
146 views

MKOverlay update flashing

In my app, I use an MKPolyline to track the user's path. Sometimes (and not all the time, which I don't understand), when a new line segment gets added to the map, the entire line flashes. Sometimes ...
3
votes
4answers
870 views

GPS app stopped working on iOS 5 - Location Manager not updating

I have developed an app targeted for iOS 4.3. It worked fine. But since I migrated to iOS 5.0, the app has started showing strange behavior. The location manager is not showing updates on change in ...
3
votes
2answers
170 views

check for locationServicesEnabled always returns YES, Irrespective of manual toggle switch to decide if location services are enabled

location = [[CLLocationManager alloc] init]; location.desiredAccuracy = kCLLocationAccuracyBestForNavigation ; location.distanceFilter = 10 ; location.delegate=self; ...
3
votes
2answers
400 views

Get user current location on MKMapView

I am trying to get the user current latest location on the didUpdateToLocation:newLocation:fromLocation:oldLocation: method and store it in my ivar CLLocation *userCurrentLocation I get this error ...
3
votes
3answers
300 views

is iphone Simulator capable of showing heading and latitude , longitude?

I am using iphone simulator 4.2 and try to display or NSLog Heading and other Location services attributes e.g. Latitude, Longitude, altitude, horizontalAccuracy, VerticalAccuracy, speed. but its not ...
3
votes
1answer
162 views

How to store multiple co-ordinates and map kit plot route

I'm currently designing a new application for the iPhone. Basically I would like to track the users movements, store them and the display them later on a map. What is the best way to store the ...
3
votes
2answers
779 views

CLLocationManager crashing on release, but why?

This might be one of those silly question where, once a solution is pointed out, makes you feel pretty stupid wondering how you didn't see it but I can't figure out why this part of my app is crashing ...
3
votes
4answers
654 views

Locationservice Indicator stays “on”

I have a created a small app which uses location services on the iPhone. All works well, except the fact, that sometimes, the small arrow in the info-bar stays active even if I explicitly kill the ...
3
votes
3answers
445 views

Where to put common code for iPhone, CLLocationManager

If I have a tab bar app, and plan on using Core Location in different tabs, is there a good common place to put the code used to alloc/init the CLLocationManager, and get the updates once ...
3
votes
3answers
2k views

iphone Location Services code that works on OS 4.1 in appstore

There's a bug in OS 4.1 that has broken location services for some iPhone apps ( https://devforums.apple.com/message/306250 ). Basically location services fails to turn on, and doesn't even ask the ...
3
votes
1answer
2k views

how do I detect location service disable for my app?

IOS4 has recently introduced the possibility to enable/disable location services for a specific application. I need to detect if this settings is enabled/disabled for MY application. First I have ...
3
votes
4answers
2k views

Finding Direction in iPhone like in Compass?

Do any one have idea for finding true direction using iPhone? I want to implement such application in which I need to find direction in which iPhone is pointing and want to make application same as ...
3
votes
2answers
1k views

Corelocation Problem

I am developing an application which computes the distance travelled by the user.I am using CLLocationManager class to do so.But i am getting the cached data initially and also the distance variable ...
3
votes
1answer
6k views

cllocation and mkreversegeocoder

i'm try to retreiving city name with cllocation and mkreversegeocoder. in my viewdidload method i istance cllocationmanager: self.locManager = [[CLLocationManager alloc] init]; locManager.delegate = ...
3
votes
1answer
764 views

check if a user allows the app to use their location

The first time the app tries to get the users location they are prompted with "Would like to use your current location" and they can hit Don't allow or ok. Is there any way to find out if the user ...
2
votes
1answer
35 views

Is startUpdatingMyLocation mandatory to call the location manager's didUpdateToLocation method in iphone sdk

I need a clarification that. Is startUpdatingMyLocation method mandatory to call didUpdateToLocation? isn't the didUpdateToLocation method automatically called when the location is updated? Guy's ...
2
votes
1answer
33 views

What is the maximum number of regions that can be monitored with startMonitoringForRegion:region desiredAccuracy:accuracy?

The documentation says there's a limit to the number of regions that can be monitored with- (void)startMonitoringForRegion:(CLRegion *)region desiredAccuracy:(CLLocationAccuracy)accuracy but I ...
2
votes
1answer
85 views

If background applications can't launch automatically how does Cardcase launch on a location change?

The Cardcase application lets you know if you approach a shop which you have a previous relationship with (if you've set up a tab for payments there etc.). If background running applications cannot ...
2
votes
2answers
69 views

Core location gives old location whenever comes from background

I have a CoreLocation manager in VC, when user pressed "get direction" button, I initalize location manager, and app opens google map direction with current location and some pre defined destination ...
2
votes
3answers
56 views

Pretty Print Distances for iOS

I have two CLLocation objects and I would like the show the distance between them in a nice and pretty format. Like "22 feet", "58 yards", or "2.3 miles" CLLocation *location1 = [[CLLocation alloc] ...
2
votes
3answers
148 views

CLLocationManager don't stop

Dear fellow developers, I am trying hard to find a solution for my problem regarfing CLLocationManager. I use a CLLocationManager instance in my Application. If the user selects the Home button on ...
2
votes
1answer
110 views

Location manager giving old locations with new timestamps

I'm having the following problem in my iPhone app: I enable the location manager on a regular basis and I do wait for multiple location updates. When receiving a new location, I check the timestamp ...
2
votes
1answer
47 views

iphone startMonitoringRegion monitoredRegions size limit

is there a limit to the number of regions we can monitor? monitoredRegions is a NSSet, but no specs on a hard limit. Thanks!
2
votes
1answer
89 views

Memory leak using location manager

I use the location manager with "didUpdateToLocation". I have a memory leak that I cannot explain: - (void) locationManager:(CLLocationManager *) manager didUpdateToLocation:(CLLocation *) ...
2
votes
1answer
304 views

Location Manger update frequency, iphone

I have a CLLocation manager called "myLocation". myLocation = [[CLLocationManager alloc] init]; myLocation.desiredAccuracy = kCLLocationAccuracyBestForNavigation ; myLocation.distanceFilter = ...
2
votes
1answer
288 views

CLLocationManager Singleton - is this the way to go?

I'm building an app with two simple views (in a tabbar). first view: it should show the user's location (default blue dot) and load data from a server. second view: it should show the user's ...
2
votes
1answer
683 views

Background location tracking: iOS

I'm trying to decide between Apple's significant location change services and start / stopping the location manager regularly myself. This is what Apple says about it : Gathering location data is ...
2
votes
1answer
108 views

Problem in adding latitude and longitude value

when i change the latitude and longitude value of another location my app closes automatically help ? if (1) { CLLocationCoordinate2D cordi; cordi.latitude = 45.574779; cordi.longitude ...

1 2 3 4 5 8