我在苹果地图的市场集群上工作(这里是插件https://github.com/ribl/FBAnnotationClusteringSwift),我想立刻在我的地图上显示所有记录 - 为此我需要从中下载所有记录远程webservice,将其添加到json(我已经完成了),然后将所有获取的点添加到数组中。
我的代码如下所示:
let clusteringManager = FBClusteringManager()
var array:[FBAnnotation] = []
func loadInitialData() {
RestApiManager.sharedInstance.getRequests { json in
if let jsonData = json.array {
for requestJSON in jsonData {
dispatch_async(dispatch_get_main_queue(),{
if let request = SingleRequest.fromJSON(requestJSON){
let pin = FBAnnotation()
pin.coordinate = CLLocationCoordinate2D(latitude: request.latitude, longitude: request.longitude)
self.array.append(pin)
}
})
}
}
}
}
你可以看到我将所有pin
附加到数组中,在某些时候我需要在这里使用这个数组:
self.clusteringManager.addAnnotations(array)
我以为我可以在方法loadInitialData
的最后写上面的行,但是数组仍然是空的。我应该如何更改我的代码,以便在addAnnotations
填充数据时调用array
方法?
===编辑
只需添加一小段内容即可 - 我在loadInitialData
viewDidLoad
override func viewDidLoad() {
super.viewDidLoad()
mapView.delegate = self
loadInitialData()
}
答案 0 :(得分:0)
您可能想要使用NSOperation
。它的API有方法addDependency(:)
,正是您正在寻找的。
代码可能如下所示:
let queue = NSOperationQueue()
var operations : [NSOperation] = []
RestApiManager.sharedInstance.getRequests { json in
if let jsonData = json.array {
for requestJSON in jsonData {
let newOperation = NSBlockOperation {
SingleRequest.fromJSON(requestJSON){
let pin = FBAnnotation()
pin.coordinate = CLLocationCoordinate2D(latitude: request.latitude, longitude: request.longitude)
self.array.append(pin)
}
operations.append(newOperation)
}
}
}
let finalOperation = NSBlockOperation() {
///array has been populated
///proceed with it
}
operations.forEach { $0.addDependency(finalOperation) }
operations.append(finalOpeartion)
operationQueue.addOperations(operations)
}