Skip to content

Instantly share code, notes, and snippets.

@justin
Created April 3, 2012 21:16
Show Gist options
  • Save justin/2295555 to your computer and use it in GitHub Desktop.
Save justin/2295555 to your computer and use it in GitHub Desktop.
Core Location Purpose Example
self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.desiredAccuracy = kCLLocationAccuracyKilometer;
self.locationManager.distanceFilter = 1000.0; // 1 km
self.locationManager.delegate = self;
self.locationManager.purpose = NSLocalizedString(@"To show you nearby activities", @"");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment