Wie kann ich den aktuellen Standort vom Benutzer in iOS abrufen?


Antworten:


336

Die Antwort von RedBlueThing hat für mich ganz gut funktioniert. Hier ist ein Beispielcode, wie ich es gemacht habe.

Header

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

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

@end

Hauptdatei

In der init-Methode

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

Rückruffunktion

- (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

In iOS 6 war die Delegatenfunktion veraltet. Der neue Delegierte ist

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

Verwenden Sie daher die neue Position

[locations lastObject]

iOS 8

In iOS 8 sollte die Berechtigung explizit abgefragt werden, bevor mit dem Aktualisieren des Speicherorts begonnen wird

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];

Sie müssen auch eine Zeichenfolge für die NSLocationAlwaysUsageDescriptionoder NSLocationWhenInUseUsageDescriptionSchlüssel zur Info.plist der App hinzufügen. Andernfalls werden Anrufe an startUpdatingLocationignoriert und Ihr Delegat erhält keinen Rückruf.

Und am Ende, wenn Sie mit dem Lesen des Standorts fertig sind, rufen Sie stopUpdating an einem geeigneten Ort auf.

[locationManager stopUpdatingLocation];

4
+1 danke für das Posten eines einfachen Code-Schnipsels, um die akzeptierte Antwort zu ergänzen
AngeloS

12
Seien Sie vorsichtig mit diesem Beispiel, diese Eigenschaftswerte führen zu einem höheren Batterieverbrauch.
DanSkeel

36
WICHTIG: Sie müssen auch "stopUpdatingLocations" ausführen, da sonst die Delegate-Methode jedes Mal aufgerufen wird, wenn der Benutzer seinen Speicherort ändert. Das oben erwähnte Batterieproblem und auch wenn bei dieser Delegatmethode eine andere Methode ausgelöst wird, wird diese weiterhin aufgerufen. Happy Coding Guys !! Prost!!
Apple_iOS0304

5
Sie sind der Benutzertyp, der StackOverflow großartig macht. Code-Schnipsel sind vorbildlich und ich hoffe, dass mehr Menschen sie in ihre Antworten einbeziehen.
Danny

26
Für iOS 8.0+ müssen Sie folgende Schlüssel in die Info.plist Ihres Projekts aufnehmen: NSLocationAlwaysUsageDescriptionWenn Sie verwenden [self.locationManager requestAlwaysAuthorization]oder NSLocationWhenInUseUsageDescriptionwenn Sie verwenden [self.locationManager requestWhenInUseAuthorization]. Um iOS 6.0+ bis iOS 7.0+ zu unterstützen, müssen Sie auch den Schlüssel NSLocationUsageDescriptionoder "Datenschutz - Beschreibung der Standortnutzung" verwenden. Weitere Informationen unter Link: developer.apple.com/library/ios/documentation/General/Reference/…
Sihad Begovic

79

In iOS 6 ist die

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

ist veraltet.

Verwenden Sie stattdessen den folgenden Code

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

Für iOS 6 ~ 8 ist die oben beschriebene Methode weiterhin erforderlich, Sie müssen jedoch die Autorisierung durchführen.

_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 
}

Dies ist die Delegatmethode, die die Autorisierung des Benutzers verwaltet

#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
sollte das nicht sein [locations lastObject]?
Ian Dundas

1
Ich habe genau die oben genannten Schritte versucht. Aber ich bekomme "Benutzer denkt immer noch" in der Konsole gedruckt. Bedeutet dies, dass die App nicht berechtigt ist, den Standort zu verwenden? Wenn ja, wie erlaube ich der App, den Standort zu verwenden? Bitte helfen Sie.
kirans_6891


31

Versuchen Sie diese einfachen Schritte ....

HINWEIS: Bitte überprüfen Sie den Breitengrad und die Logitude des Gerätestandorts, wenn Sie Simulatormittel verwenden. Standardmäßig ist es nur keine.

Schritt 1: Import CoreLocationRahmen in .h - Datei

#import <CoreLocation/CoreLocation.h>

Schritt 2: Fügen Sie den Delegaten CLLocationManagerDelegate hinzu

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

Schritt 3: Fügen Sie diesen Code in die Klassendatei ein

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

Schritt 4: Methode zum Erkennen des aktuellen Standorts

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

Schritt 5: Ermitteln Sie den Standort mit dieser Methode

- (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

In Swift (für iOS 8+).

Info.plist

Das wichtigste zuerst. Sie müssen Ihre beschreibende Zeichenfolge in die Datei info.plist für die Schlüssel einfügen NSLocationWhenInUseUsageDescriptionoder NSLocationAlwaysUsageDescriptionje nachdem, welche Art von Dienst Sie anfordern

Code

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 = []
    }
}

Verwendung

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

8
Ich glaube, es gibt einen Schalter () in schnellen Fällen für Fälle wie diesen: ^)
Anton Tropashko

self.locationManager = LocationManager()Verwenden Sie diese Zeile in der viewDidLoad-Methode, damit ARC die Instanz nicht entfernt und das Popup für den Speicherort zu schnell verschwindet.
Kunal Gupta


2

iOS 11.x Swift 4.0 Info.plist benötigt diese beiden Eigenschaften

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

Und dieser Code ... stellt natürlich sicher, dass Sie ein CLLocationManagerDelegate sind

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")
    }

Und natürlich auch diesen Code, den Sie in viewDidLoad () einfügen können.

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

Und diese beiden für den requestLocation, um dich zum Laufen zu bringen, auch bekannt als, dass du nicht von deinem Platz aufstehen musst :)

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

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

1

Sie können diesen Service nutzen, den ich geschrieben habe, um alles für Sie zu erledigen.

Dieser Dienst fordert die Berechtigungen an und kümmert sich um den Umgang mit dem CLLocationManager, sodass Sie dies nicht tun müssen.

Verwenden Sie wie folgt:

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

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

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

0

Für Swift 5 gibt es hier eine kurze Kurzklasse, um den Standort zu ermitteln:

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
    }
}
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.