Untitled


SUBMITTED BY: antoineh1

DATE: May 8, 2016, 8:30 p.m.

FORMAT: Text only

SIZE: 290 Bytes

HITS: 3943

  1. locationManager = [[CLLocationManager alloc] init];
  2. locationManager.delegate = self;
  3. locationManager.desiredAccuracy = kCLLocationAccuracyBest;
  4. locationManager.distanceFilter = 0;
  5. [locationManager startUpdatingLocation];
  6. CLLocation *currentLocation = [locationManager location];

comments powered by Disqus