iOSでユーザーから現在地を取得する方法


回答:


336

RedBlueThingの答えは私にはとてもうまくいきました。ここに私がそれをした方法のいくつかのサンプルコードがあります。

ヘッダ

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

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

@end

MainFile

initメソッドで

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

コールバック関数

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

iOS 6では、デリゲート関数は廃止されました。新しいデリゲートは

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

したがって、新しい位置を取得するには

[locations lastObject]

iOS 8

iOS 8では、位置情報の更新を開始する前に、許可を明示的に要求する必要があります

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

NSLocationAlwaysUsageDescriptionまたはNSLocationWhenInUseUsageDescriptionキーの文字列をアプリのInfo.plist に追加する必要もあります。そうでない場合、への呼び出しstartUpdatingLocationは無視され、デリゲートはコールバックを受け取りません。

最後に、場所の読み取りが完了したら、適切な場所でstopUpdating場所を呼び出します。

[locationManager stopUpdatingLocation];

4
+1受け入れられた回答を補完する簡単なコードスニペットを投稿していただきありがとう
ござい

12
この例に注意してください。これらのプロパティ値は、バッテリーの消費量を増加させます。
DanSkeel

36
重要:「stopUpdatingLocations」も必要です。そうしないと、ユーザーが場所を変更するたびにデリゲートメソッドが呼び出されます。したがって、上記のバッテリーの問題と、このデリゲートメソッドでトリガーされる別のメソッドがある場合は、呼び出しが継続されます。Happy Coding Guys !! 乾杯!!
Apple_iOS0304

5
あなたはStackOverflowをすばらしいものにするユーザーのタイプです。コードスニペットは模範的なものであり、私はより多くの人々が回答にそれらを含めることを望みます。
ダニー

26
iOS 8.0以降の場合、プロジェクトのInfo.plistに次のキーを含める必要があります:NSLocationAlwaysUsageDescriptionを使用している[self.locationManager requestAlwaysAuthorization]場合NSLocationWhenInUseUsageDescription、またはを使用している場合[self.locationManager requestWhenInUseAuthorization]。また、iOS 6.0+からiOS 7.0+をサポートするには、キーNSLocationUsageDescriptionまたは「プライバシー-ロケーション使用法の説明」を含めます。リンクの詳細情報:developer.apple.com/library/ios/documentation/General/Reference/...
Sihad Begovic

79

iOS 6では、

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

廃止予定です。

代わりに次のコードを使用してください

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

iOS 6〜8の場合も、上記の方法が必要ですが、認証を処理する必要があります。

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

これは、ユーザーの承認を処理するデリゲートメソッドです。

#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
これはいけません[locations lastObject]か?
Ian Dundas 2013年

1
上記とまったく同じ手順を試しました。しかし、「ユーザーはまだ考えています」というメッセージがコンソールに出力されます。では、アプリが位置情報の使用を許可されていないということですか?はいの場合、アプリに位置情報の使用を許可するにはどうすればよいですか。助けてください。
kirans_6891


31

この簡単な手順を試してください...

注:シミュレータを使用している場合は、デバイスの場所の緯度と経度を確認してください。デフォルトでは何もありません。

ステップ1:CoreLocation .hファイルにフレームワークをインポートする

#import <CoreLocation/CoreLocation.h>

手順2:デリゲートCLLocationManagerDelegateを追加する

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

ステップ3:このコードをクラスファイルに追加する

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

ステップ4:現在地を検出する方法

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

手順5:この方法を使用して位置を取得する

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

Swift(iOS 8以降の場合)。

Info.plist

まず最初に。キーのinfo.plistファイルに、NSLocationWhenInUseUsageDescriptionまたはNSLocationAlwaysUsageDescriptionリクエストしているサービスの種類に応じて、説明の文字列を追加する必要があります

コード

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

使用法

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

8
私はこのような場合のために迅速にswitch()があると信じています:^)
アントン・トロパシュコ

self.locationManager = LocationManager()この行をviewDidLoadメソッドで使用して、ARCがインスタンスを削除せず、場所のポップアップがすぐに消えるようにします。
Kunal Gupta


2

iOS 11.x Swift 4.0 Info.plistにはこれら2つのプロパティが必要です

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

そして、このコード...もちろんあなたの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")
    }

そしてもちろん、このコードもviewDidLoad()に入れることができます。

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

そして、これら2つはrequestLocationを使用するためのもので、別名:席から降りる必要がなくなります:)

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

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

1

私が書いたこのサービスを使用してすべてを処理できます。

このサービスは、アクセス許可を要求し、CLLocationManagerを処理するため、必要はありません。

このように使用します:

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

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

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

0

Swift 5の場合、場所を取得する簡単な短いクラスを次に示します。

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
    }
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.