无法使用索引类型int下标[CLPlacemark]类型的值

时间:2015-06-14 13:26:33

标签: ios xcode swift ios8 xcode7

我想检索当前位置。我在swift Xcode 7上工作。 我查看了PLUSIEUR教程,但每次使用相同的方法。 这是我的代码和我的错误: !

  

错误:无法使用索引下标[CLPlacemark]类型的值   输入int

import UIKit
import CoreLocation

class ViewController: UIViewController, CLLocationManagerDelegate {

    let LocationManager = CLLocationManager()

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



func locationManager(manager: CLLocationManager, didUpdateLocations locations: [AnyObject]) {
    CLGeocoder().reverseGeocodeLocation(manager.location!, completionHandler: { (placemarks, error) -> Void in

        if (error != nil) {
            print("Error")
            return
        }

        if placemarks!.count > 0 {
            let pm = placemarks[0] as CLPlacemark
            self.displayLocationInfo(pm)
        }
        else {
            print("errorData")
        }

    })
}

func displayLocationInfo(placemark: CLPlacemark){
    self.LocationManager.stopUpdatingLocation()

    print(placemark.locality)
    print(placemark.postalCode)
    print(placemark.administrativeArea)
    print(placemark.country)
}

func locationManager(manager: CLLocationManager, didFailWithError error: NSError) {
    print("Error:" + error.localizedDescription)

    }
}

3 个答案:

答案 0 :(得分:14)

不,在Xcode 7中,错误是:

  

错误:无法下标类型'[CLPlacemark]?'的值索引类型为'Int'

?的注释。你必须打开那个可选项。所以你可以替换:

if placemarks!.count > 0 {
    let placemark = placemarks[0] as CLPlacemark
    self.displayLocationInfo(placemark)
}

使用:

if let placemark = placemarks?.first {
    self.displayLocationInfo(placemark)
}

答案 1 :(得分:1)

我也在几乎相同的情况下遇到过这个问题。再一次,提示是它认为它没有打包,所以放一个!进入它对我有用。

试试这个。

let pm = placemarks![0] as CLPlacemark

答案 2 :(得分:0)

     if placemarks!.count > 0
        {
             var pm:CLPlacemark!

            pm = placemarks![0] as CLPlacemark
            //let pm:CLPlacemark = placemarks.

            self.displayLocationInfo(pm)

            let locality = (pm.locality != nil) ? pm.locality : ""

            let sublocality = (pm.subLocality != nil) ? pm.subLocality : ""

            let thoroughfare = (pm.thoroughfare != nil) ? pm.thoroughfare : ""

            let country = (pm.country != nil) ? pm.country : ""

            let administrativeArea = (pm.administrativeArea != nil) ? pm.administrativeArea : ""

            print(pm.subLocality)

            var annotation = MKPointAnnotation()
            annotation.coordinate = coordinate
            annotation.title = "\(thoroughfare) \(sublocality), \(locality)"
            annotation.subtitle = "\(administrativeArea), \(country)";

            self.mapViewForVisitLocation.addAnnotation(annotation)
        }

它适用于X-Code 7和Swift 2.0。