Câu trả lời:
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ó.
#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>
@interface yourController : UIViewController <CLLocationManagerDelegate> {
CLLocationManager *locationManager;
}
@end
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);
}
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]
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 NSLocationAlwaysUsageDescription
hoặc NSLocationWhenInUseUsageDescription
các phím vào Info.plist của ứng dụng. Nếu không, các cuộc gọi đến startUpdatingLocation
sẽ 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];
NSLocationAlwaysUsageDescription
nếu bạn đang sử dụng [self.locationManager requestAlwaysAuthorization]
hoặc NSLocationWhenInUseUsageDescription
nế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 NSLocationUsageDescription
hoặ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
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;
}
}
[locations lastObject]
?
Bạn sử dụng khung CoreLocation để truy cập thông tin vị trí về người dùng của bạn. Bạn sẽ cần khởi tạo một đối tượng CLLocationManager và gọi thông báo startUpdatingLocation không đồng bộ . Bạn sẽ nhận được các cuộc gọi lại với vị trí của người dùng thông qua CLLocationManagerDelegate mà bạn cung cấp.
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 CoreLocation
khung 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);
------*/
}];
}
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 NSLocationWhenInUseUsageDescription
hoặc NSLocationAlwaysUsageDescription
tùy thuộc vào loại dịch vụ bạn đang yêu cầu
Mã
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)
}
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.
Tài liệu Xcode có vô số kiến thức và ứng dụng mẫu - kiểm tra Hướng dẫn lập trình nhận thức vị trí .
Các LocateMe dự án mẫu minh họa những ảnh hưởng của việc sửa đổi CLLocationManager thiết lập độ chính xác khác nhau 's
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)
}
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)
})
Đố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
}
}