Skip to content

Instantly share code, notes, and snippets.

@donly
Created May 25, 2012 03:33
Show Gist options
  • Save donly/2785600 to your computer and use it in GitHub Desktop.
Save donly/2785600 to your computer and use it in GitHub Desktop.
- (IBAction)openGPS:(id)sender {
if (locationManager == nil) {
locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
locationManager.desiredAccuracy = kCLLocationAccuracyBest; // 越精确,越耗电!
}
[locationManager startUpdatingLocation]; // 开始定位
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment