如何在Swift iOS编程中获取某人的当前位置?

时间:2016-04-09 07:22:46

标签: ios xcode swift gps location

我正试图弄清楚如何使用SWIFT为XCODE中的iOS应用程序获取某人的当前位置。

我正在关注本教程here,但出于某种原因,我的代码无效。我认为这是因为我使用的是更新的Xcode版本。出于某种原因,我的代表有不同的参数,我不知道为什么,但是当我构建我的程序时,它甚至不会问我是否要允许位置服务。

这是我的代码

override func viewDidLoad()
    {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.

        self.locationManager.delegate = self;
        self.locationManager.desiredAccuracy = kCLLocationAccuracyBest;
        self.locationManager.requestWhenInUseAuthorization();
        self.locationManager.startUpdatingLocation();
    }

    override func didReceiveMemoryWarning()
    {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

    // GPS STUFF
    // UPDATE LOCATION
    func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
        CLGeocoder().reverseGeocodeLocation(manager.location!) { (placemarks, ErrorType) -> Void in
            if(ErrorType != nil)
            {
                print("Error: " + ErrorType!.localizedDescription);
                return;
            }

            if(placemarks?.count > 0)
            {
                let pm = placemarks![0] ;
                self.displayLocationInfo(pm);
            }
        }
    }

    // STOP UPDATING LOCATION
    func displayLocationInfo(placemark: CLPlacemark)
    {
        self.locationManager.stopUpdatingLocation();
        print(placemark.locality);
        print(placemark.postalCode);
        print(placemark.administrativeArea);
        print(placemark.country);
    }

另外,在info.plist中我还添加了NSLocationWhenInUseUsageDescription。

任何建议都会很棒

1 个答案:

答案 0 :(得分:0)

Info.plist中,添加以下内容:

enter image description here

或者您可以在Info.plist中添加如下内容:

<key>NSLocationAlwaysUsageDescription</key>
    <string>To get current location</string>

这将要求您允许位置服务。

希望这对你有所帮助。