Skip to content

Instantly share code, notes, and snippets.

@mstg
Created April 21, 2014 23:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mstg/11160216 to your computer and use it in GitHub Desktop.
Save mstg/11160216 to your computer and use it in GitHub Desktop.
@interface CLLocationManager (iOS7)
+ (BOOL)locationServicesEnabled;
+ (void)setLocationServicesEnabled:(BOOL)newValue;
@end
static BOOL getLocationStatus() {
return [CLLocationManager locationServicesEnabled];
}
static void setLocationStatus(BOOL newState) {
[CLLocationManager setLocationServicesEnabled:newState];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment