Làm cách nào tôi có thể có được vị trí hiện tại từ người dùng trong iOS


Câu trả lời:


336

Câu trả lời của RedBlueThing hoạt động khá tốt đối với tôi. Đây là một số mã mẫu về cách tôi đã làm nó.

Tiêu đề

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

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

@end

Tập tin chính

Trong phương thức init

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

Chức năng gọi lại

- (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);
}

hệ điều hanh 6

Trong iOS 6, chức năng đại biểu không được dùng nữa. Đại biểu mới là

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

Do đó, để có được vị trí mới sử dụng

[locations lastObject]

iOS 8

Trong iOS 8, quyền nên được hỏi rõ ràng trước khi bắt đầu cập nhật vị trí

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

Bạn cũng phải thêm một chuỗi cho NSLocationAlwaysUsageDescriptionhoặc NSLocationWhenInUseUsageDescriptioncác phím vào Info.plist của ứng dụng. Nếu không, các cuộc gọi đến startUpdatingLocationsẽ bị bỏ qua và đại biểu của bạn sẽ không nhận được bất kỳ cuộc gọi lại nào.

Và cuối cùng khi bạn đọc xong vị trí hãy gọi stopUpdating location ở vị trí thích hợp.

[locationManager stopUpdatingLocation];

4
+1 cảm ơn vì đã đăng một đoạn mã đơn giản để khen câu trả lời được chấp nhận
AngeloS

12
Hãy cẩn thận với ví dụ này, các giá trị thuộc tính này dẫn đến mức tiêu thụ pin cao hơn.
DanSkeel

36
QUAN TRỌNG: Bạn cũng cần "stopUpdatingLocations" nếu không phương thức ủy nhiệm sẽ được gọi mỗi khi người dùng thay đổi vị trí. Do đó, đã đề cập đến vấn đề về pin và nếu có một phương thức khác được kích hoạt trong phương thức ủy nhiệm này, nó sẽ tiếp tục được gọi. Chúc mừng các chàng trai mã hóa !! Chúc mừng !!
Apple_iOS0304

5
Bạn là kiểu người dùng làm cho StackOverflow trở nên tuyệt vời. Đoạn mã là mẫu mực và tôi hy vọng nhiều người hơn bao gồm chúng với câu trả lời của họ.
Daniel

26
Đối với iOS 8.0 trở lên, bạn phải bao gồm các khóa sau trong Info.plist của dự án của bạn: NSLocationAlwaysUsageDescriptionnếu bạn đang sử dụng [self.locationManager requestAlwaysAuthorization]hoặc NSLocationWhenInUseUsageDescriptionnếu bạn đang sử dụng [self.locationManager requestWhenInUseAuthorization]. Ngoài ra, để hỗ trợ iOS 6.0+ đến iOS 7.0+ bao gồm khóa NSLocationUsageDescriptionhoặc 'Quyền riêng tư - Mô tả sử dụng vị trí'. Thông tin thêm về liên kết: developer.apple.com/l
Library / ios / document / General / Reperence / nỗi

79

Trong iOS 6,

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

bị phản đối

Sử dụng mã sau thay thế

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

Đối với iOS 6 ~ 8, phương pháp trên vẫn cần thiết, nhưng bạn phải xử lý ủy quyền.

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

Đây là phương thức ủy nhiệm xử lý ủy quyền của người dùng

#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
điều này có nên không [locations lastObject]?
Ian Dundas

1
Tôi đã thử chính xác các bước được đề cập ở trên. Nhưng tôi nhận được "Người dùng vẫn đang suy nghĩ" được in trong bảng điều khiển. Vì vậy, nó có nghĩa là ứng dụng không được phép sử dụng vị trí? Nếu có, làm cách nào để tôi cho phép ứng dụng sử dụng vị trí. Xin vui lòng giúp đỡ.
kirans_6891


31

Hãy thử các bước đơn giản này ....

LƯU Ý: Vui lòng kiểm tra vĩ độ và vị trí của thiết bị nếu bạn đang sử dụng phương tiện giả lập. Bằng cách mặc định không chỉ của nó.

Bước 1: Nhập CoreLocationkhung trong tệp .h

#import <CoreLocation/CoreLocation.h>

Bước 2: Thêm đại biểu CLLocationManagerDelegate

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

Bước 3: Thêm mã này vào tệp lớp

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

Bước 4: Phương pháp phát hiện vị trí hiện tại

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

Bước 5: Nhận vị trí bằng phương pháp này

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

Trong Swift (dành cho iOS 8+).

Thông tin

Điều đầu tiên đầu tiên. Bạn cần thêm chuỗi mô tả của mình vào tệp info.plist cho các khóa NSLocationWhenInUseUsageDescriptionhoặc NSLocationAlwaysUsageDescriptiontùy thuộc vào loại dịch vụ bạn đang yêu cầu

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

Sử dụng

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

8
tôi tin rằng có một công tắc () nhanh chóng cho các trường hợp như thế này: ^)
Anton Tropashko

self.locationManager = LocationManager()sử dụng dòng này trong phương thức viewDidLoad để ARC không loại bỏ thể hiện và cửa sổ bật lên cho vị trí biến mất quá nhanh.
Kunal Gupta


2

iOS 11.x Swift 4.0 Info.plist cần hai thuộc tính này

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

Và mã này ... đảm bảo tất nhiên là CLLocationManagerDelegate của bạn

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

Và tất nhiên mã này cũng vậy mà bạn có thể đặt trong viewDidLoad ().

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

Và hai điều này cho yêu cầu Vị trí để đưa bạn đi, hay còn gọi là tiết kiệm bạn phải rời khỏi chỗ ngồi :)

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

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

1

Bạn có thể sử dụng dịch vụ này tôi đã viết để xử lý mọi thứ cho bạn.

Dịch vụ này sẽ yêu cầu quyền và xử lý giao dịch với CLLocationManager để bạn không phải làm vậy.

Sử dụng như thế này:

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

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

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

0

Đối với Swift 5, đây là một lớp ngắn nhanh để có được vị trí:

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
    }
}
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.