Como posso obter a localização atual do usuário no iOS


Respostas:


336

A resposta do RedBlueThing funcionou muito bem para mim. Aqui está um exemplo de código de como eu fiz isso.

Cabeçalho

#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>

@interface yourController : UIViewController <CLLocationManagerDelegate> {
    CLLocationManager *locationManager;
}

@end

MainFile

No método init

locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
locationManager.distanceFilter = kCLDistanceFilterNone;
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
[locationManager startUpdatingLocation];

Função de retorno de chamada

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
    NSLog(@"OldLocation %f %f", oldLocation.coordinate.latitude, oldLocation.coordinate.longitude);
    NSLog(@"NewLocation %f %f", newLocation.coordinate.latitude, newLocation.coordinate.longitude);
}

iOS 6

No iOS 6, a função delegar foi preterida. O novo delegado é

- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations

Portanto, para obter a nova posição, use

[locations lastObject]

iOS 8

No iOS 8, a permissão deve ser solicitada explicitamente antes de começar a atualizar o local

locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
locationManager.distanceFilter = kCLDistanceFilterNone;
locationManager.desiredAccuracy = kCLLocationAccuracyBest;

if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0)
    [self.locationManager requestWhenInUseAuthorization];

[locationManager startUpdatingLocation];

Você também precisa adicionar uma sequência de caracteres para as teclas NSLocationAlwaysUsageDescriptionou NSLocationWhenInUseUsageDescriptionno Info.plist do aplicativo. Caso contrário, as chamadas para startUpdatingLocationserão ignoradas e seu representante não receberá nenhum retorno de chamada.

E no final, quando terminar de ler o local, chame stopUpdating location no local adequado.

[locationManager stopUpdatingLocation];

4
+1 obrigado por postar um código simples snippet para complementar a resposta aceita
Angelos

12
Cuidado com este exemplo, esses valores de propriedade levam a um maior consumo de bateria.
DanSkeel

36
IMPORTANTE: Você também precisa "stopUpdatingLocations"; caso contrário, o método delegado será chamado toda vez que o usuário alterar sua localização. Assim, o problema de bateria acima mencionado e também se houver outro método sendo acionado nesse método delegado, ele continuará chamando. Caras felizes da codificação !! Felicidades!!
Apple_iOS0304 13/03/2019

5
Você é o tipo de usuário que torna o StackOverflow ótimo. Os trechos de código são exemplares e espero que mais pessoas os incluam com suas respostas.
21713 Danny

26
Para o iOS 8.0+, é necessário incluir as seguintes chaves no Info.plist do seu projeto: NSLocationAlwaysUsageDescriptionse você estiver usando [self.locationManager requestAlwaysAuthorization]ou NSLocationWhenInUseUsageDescriptionse estiver usando [self.locationManager requestWhenInUseAuthorization]. Também para oferecer suporte ao iOS 6.0+ ao iOS 7.0+, inclua a chave NSLocationUsageDescriptionou 'Privacidade - Descrição de uso do local'. Mais informações no link: developer.apple.com/library/ios/documentation/General/Reference/…
Sihad Begovic

79

No iOS 6, o

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation

está obsoleto.

Use o código a seguir

- (void)locationManager:(CLLocationManager *)manager
     didUpdateLocations:(NSArray *)locations {
    CLLocation *location = [locations lastObject];
    NSLog(@"lat%f - lon%f", location.coordinate.latitude, location.coordinate.longitude);
}

Para o iOS 6 ~ 8, o método acima ainda é necessário, mas você precisa lidar com a autorização.

_locationManager = [CLLocationManager new];
_locationManager.delegate = self;
_locationManager.distanceFilter = kCLDistanceFilterNone;
_locationManager.desiredAccuracy = kCLLocationAccuracyBest;

if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0 &&
    [CLLocationManager authorizationStatus] != kCLAuthorizationStatusAuthorizedWhenInUse
    //[CLLocationManager authorizationStatus] != kCLAuthorizationStatusAuthorizedAlways
   ) {
     // Will open an confirm dialog to get user's approval 
    [_locationManager requestWhenInUseAuthorization]; 
    //[_locationManager requestAlwaysAuthorization];
} else {
    [_locationManager startUpdatingLocation]; //Will update location immediately 
}

Este é o método delegado que lida com a autorização do usuário

#pragma mark - CLLocationManagerDelegate
- (void)locationManager:(CLLocationManager*)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status
{
    switch (status) {
    case kCLAuthorizationStatusNotDetermined: {
        NSLog(@"User still thinking..");
    } break;
    case kCLAuthorizationStatusDenied: {
        NSLog(@"User hates you");
    } break;
    case kCLAuthorizationStatusAuthorizedWhenInUse:
    case kCLAuthorizationStatusAuthorizedAlways: {
        [_locationManager startUpdatingLocation]; //Will update location immediately
    } break;
    default:
        break;
    }
}

10
isso não deveria ser [locations lastObject]?
Ian Dundas

1
Eu tentei exatamente os mesmos passos mencionados acima. Mas eu recebo "Usuário ainda pensando" impresso no console. Então, isso significa que o aplicativo não está autorizado a usar o local? Se sim, como permito que o aplicativo use o local. Por favor ajude.
Kirans_6891


31

Experimente estas etapas simples ....

NOTA: Verifique a latitude e a logitude da localização do dispositivo se você estiver usando meios de simulador. Por padrão, não é apenas um.

Etapa 1: Importar CoreLocationestrutura no arquivo .h

#import <CoreLocation/CoreLocation.h>

Etapa 2: adicionar delegado CLLocationManagerDelegate

@interface yourViewController : UIViewController<CLLocationManagerDelegate>
{
    CLLocationManager *locationManager;
    CLLocation *currentLocation;
}

Etapa 3: adicionar esse código no arquivo de classe

- (void)viewDidLoad
{
    [super viewDidLoad];
    [self CurrentLocationIdentifier]; // call this method
}

Etapa 4: método para detectar a localização atual

//------------ Current Location Address-----
-(void)CurrentLocationIdentifier
{
    //---- For getting current gps location
    locationManager = [CLLocationManager new];
    locationManager.delegate = self;
    locationManager.distanceFilter = kCLDistanceFilterNone;
    locationManager.desiredAccuracy = kCLLocationAccuracyBest;
    [locationManager startUpdatingLocation];
    //------
}

Etapa 5: obter localização usando este método

- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{
    currentLocation = [locations objectAtIndex:0];
    [locationManager stopUpdatingLocation];
    CLGeocoder *geocoder = [[CLGeocoder alloc] init] ;
    [geocoder reverseGeocodeLocation:currentLocation completionHandler:^(NSArray *placemarks, NSError *error)
     {
         if (!(error))
         {
             CLPlacemark *placemark = [placemarks objectAtIndex:0];
             NSLog(@"\nCurrent Location Detected\n");
             NSLog(@"placemark %@",placemark);
             NSString *locatedAt = [[placemark.addressDictionary valueForKey:@"FormattedAddressLines"] componentsJoinedByString:@", "];
             NSString *Address = [[NSString alloc]initWithString:locatedAt];
             NSString *Area = [[NSString alloc]initWithString:placemark.locality];
             NSString *Country = [[NSString alloc]initWithString:placemark.country];
             NSString *CountryArea = [NSString stringWithFormat:@"%@, %@", Area,Country];
             NSLog(@"%@",CountryArea);
         }
         else
         {
             NSLog(@"Geocode failed with error %@", error);
             NSLog(@"\nCurrent Location Not Detected\n");
             //return;
             CountryArea = NULL;
         }
         /*---- For more results 
         placemark.region);
         placemark.country);
         placemark.locality); 
         placemark.name);
         placemark.ocean);
         placemark.postalCode);
         placemark.subLocality);
         placemark.location);
          ------*/
     }];
}

14

No Swift (para iOS 8 ou superior).

Info.plist

Primeiras coisas primeiro. Você precisa adicionar sua sequência descritiva no arquivo info.plist para as chaves NSLocationWhenInUseUsageDescriptionou NSLocationAlwaysUsageDescriptiondependendo do tipo de serviço que você está solicitando

Código

import Foundation
import CoreLocation

class LocationManager: NSObject, CLLocationManagerDelegate {
    
    let manager: CLLocationManager
    var locationManagerClosures: [((userLocation: CLLocation) -> ())] = []
    
    override init() {
        self.manager = CLLocationManager()
        super.init()
        self.manager.delegate = self
    }
    
    //This is the main method for getting the users location and will pass back the usersLocation when it is available
    func getlocationForUser(userLocationClosure: ((userLocation: CLLocation) -> ())) {
        
        self.locationManagerClosures.append(userLocationClosure)
        
        //First need to check if the apple device has location services availabel. (i.e. Some iTouch's don't have this enabled)
        if CLLocationManager.locationServicesEnabled() {
            //Then check whether the user has granted you permission to get his location
            if CLLocationManager.authorizationStatus() == .NotDetermined {
                //Request permission
                //Note: you can also ask for .requestWhenInUseAuthorization
                manager.requestWhenInUseAuthorization()
            } else if CLLocationManager.authorizationStatus() == .Restricted || CLLocationManager.authorizationStatus() == .Denied {
                //... Sorry for you. You can huff and puff but you are not getting any location
            } else if CLLocationManager.authorizationStatus() == .AuthorizedWhenInUse {
                // This will trigger the locationManager:didUpdateLocation delegate method to get called when the next available location of the user is available
                manager.startUpdatingLocation()
            }
        }
        
    }
    
    //MARK: CLLocationManager Delegate methods
    
    @objc func locationManager(manager: CLLocationManager, didChangeAuthorizationStatus status: CLAuthorizationStatus) {
        if status == .AuthorizedAlways || status == .AuthorizedWhenInUse {
            manager.startUpdatingLocation()
        }
    }
    
    func locationManager(manager: CLLocationManager, didUpdateToLocation newLocation: CLLocation, fromLocation oldLocation: CLLocation) {
        //Because multiple methods might have called getlocationForUser: method there might me multiple methods that need the users location.
        //These userLocation closures will have been stored in the locationManagerClosures array so now that we have the users location we can pass the users location into all of them and then reset the array.
        let tempClosures = self.locationManagerClosures
        for closure in tempClosures {
            closure(userLocation: newLocation)
        }
        self.locationManagerClosures = []
    }
}

Uso

self.locationManager = LocationManager()
self.locationManager.getlocationForUser { (userLocation: CLLocation) -> () in
            print(userLocation)
        }

8
Eu acredito que há um interruptor () em rápida para casos como este: ^)
Anton Tropashko

self.locationManager = LocationManager()use essa linha no método viewDidLoad para que o ARC não remova a instância e o pop-up do local desapareça muito rapidamente.
Kunal Gupta


2

O iOS 11.x Swift 4.0 Info.plist precisa dessas duas propriedades

<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>We're watching you</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>Watch Out</string>

E esse código ... certificando-se de que você é um CLLocationManagerDelegate

let locationManager = CLLocationManager()

// MARK location Manager delegate code + more

func locationManager(_ manager: CLLocationManager, didChangeAuthorization status: CLAuthorizationStatus) {
    switch status {
    case .notDetermined:
        print("User still thinking")
    case .denied:
        print("User hates you")
    case .authorizedWhenInUse:
            locationManager.stopUpdatingLocation()
    case .authorizedAlways:
            locationManager.startUpdatingLocation()
    case .restricted:
        print("User dislikes you")
    }

E, claro, esse código também, que você pode colocar em viewDidLoad ().

locationManager.delegate = self
locationManager.requestAlwaysAuthorization()
locationManager.distanceFilter = kCLDistanceFilterNone
locationManager.desiredAccuracy = kCLLocationAccuracyBest
locationManager.requestLocation()

E esses dois para o requestLocation para você ir, também conhecido como salvar você ter que sair do seu lugar :)

func locationManager(_ manager: CLLocationManager, didFailWithError error: Error) {
    print(error)
}

func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
    print(locations)
}

1

Você pode usar este serviço que escrevi para lidar com tudo para você.

Este serviço solicitará as permissões e lidará com o CLLocationManager, para que você não precise.

Use assim:

LocationService.getCurrentLocationOnSuccess({ (latitude, longitude) -> () in
    //Do something with Latitude and Longitude

    }, onFailure: { (error) -> () in

      //See what went wrong
      print(error)
})

0

Para o Swift 5, aqui está uma aula curta e rápida para obter a localização:

class MyLocationManager: NSObject, CLLocationManagerDelegate {
    let manager: CLLocationManager

    override init() {
        manager = CLLocationManager()
        super.init()
        manager.delegate = self
        manager.distanceFilter = kCLDistanceFilterNone
        manager.desiredAccuracy = kCLLocationAccuracyBest
        manager.requestWhenInUseAuthorization()
        manager.startUpdatingLocation()
    }

    func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
        // do something with locations
    }
}

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.