注释不会在地图上加载

时间:2017-12-11 04:35:31

标签: ios swift annotations mapkit cloudkit

我一直试图在地图上找到注释的方向。我最近发现了如何做到这一点,但现在并非我的所有注释都会出现在地图上,只有一个注释会出现。我在Cloudkit中使用公共数据库来存储我的所有用户信息。自从我为整个视图控制器提供变量annotation = MKPointAnnotation()以来,我的所有注释都没有在地图上显示。

这是我获取路线的方式:

let annotation = MKPointAnnotation()

@IBAction func getDirections(_ sender: Any) {
    let view = annotation.coordinate        
    print("Annotation: \(String(describing: view ))")
    let currentLocMapItem = MKMapItem.forCurrentLocation()
    let selectedPlacemark = MKPlacemark(coordinate: view, addressDictionary: nil)
    let selectedMapItem = MKMapItem(placemark: selectedPlacemark)
    let mapItems = [selectedMapItem, currentLocMapItem]
    let launchOptions = [MKLaunchOptionsDirectionsModeKey: MKLaunchOptionsDirectionsModeDriving]
    MKMapItem.openMaps(with: mapItems, launchOptions:launchOptions)
}

这是我显示注释的方式:

func fetch() {
    let truePredicate = NSPredicate(value: true)
    let eventQuery = CKQuery(recordType: "User", predicate: truePredicate)
    let queryOperation = CKQueryOperation(query: eventQuery)
    queryOperation.recordFetchedBlock = { (record : CKRecord!) in

        self.truck.append(record)

        self.annotation.title = record?["username"] as? String
        self.annotation.subtitle = record?["hours"] as? String
        if let location = record?["location"] as? CLLocation {
            self.annotation.coordinate = location.coordinate
        }

        print("recordFetchedBlock: \(record)")

        self.mapView.addAnnotation(self.annotation)
    }

    queryOperation.queryCompletionBlock = { (cursor, error) in

        print("queryCompletionBlock: \(self.truck)")
    }

    database.add(queryOperation)
}

我现在收到此错误:

This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes. 

1 个答案:

答案 0 :(得分:2)

正如@Surjeet所说,在主线程中编写所有UI更改。

DispatchQueue.main.async {
    self.mapView.addAnnotation(self.annotation)
}