Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. _locationManager = [[CLLocationManager alloc] init];
  2. [_locationManager setDelegate:self];
  3. self.locationManager.headingOrientation = CLDeviceOrientationFaceUp;
  4. [self.locationManager setDistanceFilter:kCLDistanceFilterNone];
  5. [self.locationManager setDesiredAccuracy:kCLLocationAccuracyBestForNavigation];
  6. [self.locationManager startUpdatingLocation];
  7. self.locationManager.activityType = CLActivityTypeFitness;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement