Skip to content

Instantly share code, notes, and snippets.

@aleciogomes
Created March 2, 2014 19:27
Show Gist options
  • Select an option

  • Save aleciogomes/9312312 to your computer and use it in GitHub Desktop.

Select an option

Save aleciogomes/9312312 to your computer and use it in GitHub Desktop.
Exemplo para checar se o status o Serviço de Localização.
CLAuthorizationStatus authorization = [CLLocationManager authorizationStatus];
if ([CLLocationManager locationServicesEnabled] && authorization != kCLAuthorizationStatusAuthorized) {
// Ativado, mas não está autorizado para o app
} else if (![CLLocationManager locationServicesEnabled]) {
// Desativado
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment