我正在尝试建立我的第一个Swift应用程序。在这个应用程序中,我在一个KML文件上循环,该文件包含一些餐厅的信息,对于每个餐厅,我试图用可用的信息构建一个Place对象,比较一个距离,并保持Place最接近给定点。
这是我的地方模型,一个非常简单的模型(Place.swift):

import Foundation
import MapKit

class Place {

    var name:String
    var description:String? = nil
    var location:CLLocationCoordinate2D = CLLocationCoordinate2D(latitude:0, longitude:0)

    init(name: String, description: String?, latitude: Double, longitude: Double)
    {
        self.name = name
        self.description = description
        self.location = CLLocationCoordinate2D(latitude: latitude, longitude: longitude)
    }

    func getDistance(point: CLLocationCoordinate2D) -> Float
    {
        return Geo.distance(point, coordTo: self.location)
    }
}

这里是应用程序的一部分,它在KML文件中的项上循环。
NSURLConnection.sendAsynchronousRequest(request, queue: NSOperationQueue.mainQueue()) {(response, data, error) in
    let xml = SWXMLHash.parse(data);

    var minDistance:Float = Float(UInt64.max)
    var closestPlace:Place? = nil
    var place:Place? = nil

    for placemark in xml["kml"]["Document"]["Folder"]["Placemark"] {

        var coord = placemark["Point"]["coordinates"].element?.text?.componentsSeparatedByString(",")

        // Create a place object if the place has a name
        if let placeName = placemark["name"].element?.text {

            NSLog("Place name defined, object created")

            // Overwrite the place variable with a new object
            place = Place(name: placeName, description: placemark["description"].element?.text, latitude: (coord![1] as NSString).doubleValue, longitude: (coord![0] as NSString).doubleValue)

            var distance = place!.getDistance(self.middlePosition)

            if distance < minDistance {
                minDistance = distance
                closestPlace = place
            } else {
                NSLog("Place name could not be found, skipped")
            }
        }
    }

在计算距离时,我在这个脚本中添加了断点。place变量的值为零,我不明白为什么。如果我替换这一行:
place = Place(name: placeName, description: placemark["description"].element?.text, latitude: (coord![1] as NSString).doubleValue, longitude: (coord![0] as NSString).doubleValue)

通过这一行:
let place = Place(name: placeName, description: placemark["description"].element?.text, latitude: (coord![1] as NSString).doubleValue, longitude: (coord![0] as NSString).doubleValue)

我现在可以看到我的place对象被正确地实例化了,但是我不明白为什么。
当我试图拯救最近的地方时,我也有同样的问题:
closestPlace = place

在检查器中,closestPlace的值即使在使用my place对象设置之后也是零。

最佳答案

我修正了在!对象后面添加Place的问题。我想是告诉你,我确定我在这个变量中有一个对象,这不是零。

if let placeName = placemark["name"].element?.text {

    NSLog("Place name defined, object created")

    // Overwrite the place variable with a new object
    place = Place(name: placeName, description: placemark["description"].element?.text, latitude: (coord![1] as NSString).doubleValue, longitude: (coord![0] as NSString).doubleValue)

    var distance = place!.getDistance(self.middlePosition)

    if distance < minDistance {
        minDistance = distance
        closestPlace = place!
    } else {
        NSLog("Place name could not be found, skipped")
    }
}

关于ios - 未使用Xcode 6.1设置Swift可选变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26458129/

10-12 02:45