我有一个非常具体的问题,希望有人可以帮助我解决这个问题。我有以下文件,实际上是一个连接到locationXIB
的文件xib
,我将其显示为自定义MKAnnotation
标注:
class locationXIB: UIView {
@IBOutlet weak var loationLabel: UILabel!
@IBOutlet weak var oteviraciDobaLabel: UILabel!
@IBOutlet weak var prijmajiKartyLabel: UILabel!
@IBOutlet weak var souradniceLabel: UILabel!
var customAnnotationsArray = [VecerkaAnnotation]()
override func awakeFromNib() {
super.awakeFromNib()
}
}
在这种情况下起作用的第二个类是名为VecerkaAnnotation
的类,它本身就是注释:
import Foundation
import MapKit
class VecerkaAnnotation: NSObject, MKAnnotation {
var myCoordinate: CLLocationCoordinate2D
var prijmajiKarty = true
var vsedniOteviraciDoba = ""
var vikendovaOteviraceDobra = ""
init(myCoordinate: CLLocationCoordinate2D){
self.myCoordinate = myCoordinate
}
var coordinate: CLLocationCoordinate2D {
return myCoordinate
}
}
第三个类(为简单起见,是我的MapViewController),这是从Google Firestore提取文档并创建类型[VecerkaAnnotation]
的数组的代码块:
class MapViewController: UIViewController, MKMapViewDelegate, CLLocationManagerDelegate {
var customAnnotationsArray = [VecerkaAnnotation]()
:
:
func fetchDocuments() {
let vecerkyRef = db.collection("vecerkyInfo")
Prog.start(in: mapView, .blur(.dark), .activityIndicator)
vecerkyRef.getDocuments { (querySnapshot, err) in
Prog.dismiss(in: self.mapView)
if let err = err {
print("Error fetching data from Firestore: \(err)")
let alert = UIAlertController(title: "Error fetching data", message: "Data could not be fetched, make sure you're connected to the Internet", preferredStyle: .alert)
let action = UIAlertAction(title: "Cancel", style: .cancel, handler: nil)
alert.addAction(action)
self.present(alert, animated: true)
} else {
for document in querySnapshot!.documents {
if let coords = document.get("geopoint"), let vsedni = document.get("vsedni"), let vikend = document.get("vikend"), let prijmajKarty = document.get("karty"){
let point = coords as! GeoPoint
let lat = point.latitude
let lon = point.longitude
let coord = CLLocationCoordinate2D(latitude: lat, longitude: lon)
let newAnnotation = VecerkaAnnotation(myCoordinate: coord)
newAnnotation.vikendovaOteviraceDobra = vikend as! String
newAnnotation.vsedniOteviraciDoba = vsedni as! String
newAnnotation.prijmajiKarty = prijmajKarty as! Bool
self.customAnnotationsArray.append(newAnnotation)
}
self.createAnnotations()
}
self.setLocation()
}
}
}
第四个也是最后一个类是负责管理MKAnnotationView
class LocationInformationAnnotationView: MKAnnotationView {
weak var customCalloutView : locationXIB?
:
:
func loadLocationInformationCalloutView() -> locationXIB? {
if let views = Bundle.main.loadNibNamed("locationXIB", owner: self, options: nil) as? [locationXIB], views.count > 0 {
let locationInformationCalloutView = views.first!
return locationInformationCalloutView
}
return nil
}
override func setSelected(_ selected: Bool, animated: Bool) {
if selected {
self.customCalloutView?.removeFromSuperview()
if let newCustomCalloutView = loadLocationInformationCalloutView() {
newCustomCalloutView.frame.origin.x -= newCustomCalloutView.frame.width / 2.0 - (self.frame.width / 2.0)
newCustomCalloutView.frame.origin.y -= newCustomCalloutView.frame.height
self.addSubview(newCustomCalloutView)
self.customCalloutView = newCustomCalloutView
if animated {
self.customCalloutView!.alpha = 0.0
UIView.animate(withDuration: 0.5, animations: {
self.customCalloutView!.alpha = 0.9
self.customCalloutView!.layer.shadowColor = UIColor.black.cgColor
self.customCalloutView!.layer.shadowOffset = CGSize(width: 0, height: 5)
self.customCalloutView!.layer.shadowRadius = 8
self.customCalloutView!.layer.shadowOpacity = 0.2
self.customCalloutView!.layer.cornerRadius = 5
})
}
}
} else {
if customCalloutView != nil {
if animated {
UIView.animate(withDuration: 0.5, animations: {
self.customCalloutView!.alpha = 0.0
}, completion: { (success) in
self.customCalloutView!.removeFromSuperview()
})
} else { self.customCalloutView!.removeFromSuperview() }
}
}
}
我在这里想要实现的是,用从Google Firestore检索的locationXIB
的属性填充VecerkaAnnotation
中的标签。我已经尝试了许多方法,并且感到绝望。任何和所有帮助表示感谢,谢谢!
答案 0 :(得分:0)
目前,我已经通过全局变量传递了数据,以后将使用Realm保存和检索数据。
如果任何人还有其他解决方案,请随时分享。