我是iOS编程的新手。我更喜欢使用Swift。
我要做的是调用返回一些JSON的Web服务,将JSON解析为名为Entry的自定义对象,并在地图上绘制这些条目。
我使用AlamoFire进行Web服务调用,使用SwiftyJSON将JSON解析为Entry对象,如下所示
request(.GET, URLString: "https://myURLThatReturnsJson")
.responseJSON { (_, _, json, error) in
if let json: AnyObject = json{
let jsonEntries = JSON(json)
for result in jsonEntries["entries"].arrayValue {
let business_name = result["business_name"].stringValue
let latitude = result["lat"].stringValue
let longitude = result["lng"].stringValue
let category = result["category"].stringValue
let address = result["address"].stringValue
let city = result["city"].stringValue
let type = result["type"].stringValue
let location = result["location"].stringValue
let valid = result["valid"].stringValue
let comments = result["comments"].stringValue
let date = result["date"].stringValue
let username = result["username"].stringValue
let additional_comment_count = result["additional_comment_count"].stringValue
let entry : Entry = Entry(
business_name: business_name,
latitude: latitude,
longitude: longitude,
category: category,
address: address,
city: city,
type: type,
location: location,
valid: valid,
comments: comments,
date: date,
username: username,
additional_comment_count: additional_comment_count,
title: business_name,
subtitle: location,
coordinate: CLLocationCoordinate2D(latitude: (latitude as NSString).doubleValue, longitude: (longitude as NSString).doubleValue))
entries.append(entry)
}
// Now we have our array of entries. Now plot them.
for entry in entries{
self.mapView.addAnnotation(entry)
}
}
}
因此,您可以在上面的代码中看到我也在AlamoFire请求中映射条目(不知道这是不是因为AlamoFire是在一个单独的线程上完成的,我相信)。
我还有一个viewForAnnotations方法,如下所示
func mapView(mapView: MKMapView!, viewForAnnotation annotation: MKAnnotation!) -> MKAnnotationView! {
print("viewForAnnotation called")
return nil
}
我的viewForAnnotation方法根本没有被调用(打印行上的断点没有被点击)。
任何帮助表示赞赏!
答案 0 :(得分:2)
请务必将mapview的委托属性设置为self。
mapview.delegate = self
您也可以使用Connection Inspector(Interface Builder)将mapview的委托出口连接到ViewController