Swift:iOS - 通过3rd类将数据从ViewController传递到xib文件

问题描述 投票:0回答:1

我有一个非常具体的问题,我希望有人能帮助我解决这个问题。我有以下文件,它实际上只是一个连接到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() }
        }
    }
}

我想在这里实现的是,在locationXIB中的标签填充了从Google Firestore检索到的VecerkaAnnotation的特性。我已经尝试了很多方法,我很绝望。任何和所有的帮助表示赞赏,谢谢! 。

ios swift firebase delegates xib
1个回答
0
投票

目前我已通过全局变量传递数据,并将在未来使用Realm来保存和检索数据。

如果有人有任何其他解决方案,请随时分享。

© www.soinside.com 2019 - 2024. All rights reserved.