由于 Firebase,MKUserTrackingButton 没有出现?

MKUserTrackingButton doesn't appear because of Firebase?

我在代码中添加了 MapView、MKUserTrackingButton 按钮、localManager、DispatchGroup:

let mapView: MKMapView = {
    let mapView = MKMapView()
    mapView.translatesAutoresizingMaskIntoConstraints = false
    return mapView
}()

private var userTrackingButton: MKUserTrackingButton!
private let locationManager = CLLocationManager()
let myGroup = DispatchGroup()
var array = [Car]()

在 ViewDidLoad 中我设置:

myGroup.enter()

从 Firebase 获取数据:

observeCars()

等我从 Firebase 获取所有数据:

    myGroup.notify(queue: DispatchQueue.main) {
        self.view.addSubview(self.mapView)

        //Here code to set the mapView in the view

        self.setupUserTrackingButton()
        self.locationManager.delegate = self
        self.locationManager.requestWhenInUseAuthorization()
        self.locationManager.startUpdatingLocation()
    }

这里我在视图中设置了我的按钮:

private func setupUserTrackingButton() {
    mapView.showsUserLocation = true
    userTrackingButton = MKUserTrackingButton(mapView: mapView)
    userTrackingButton.layer.backgroundColor = UIColor(white: 0.5, alpha: 1).cgColor
    userTrackingButton.layer.borderColor = UIColor.white.cgColor
    userTrackingButton.translatesAutoresizingMaskIntoConstraints = false
    view.addSubview(userTrackingButton)
    ///Code to set in the view the button
}

Class 我在其中设置与 Firebase 的连接以获取数据:

class APIService: NSObject {
    class func observeCars(completion: ((_ car: Car) -> Void)?) {
    let ref = Database.database().reference()
       ref.child("Cars").observe(.childAdded, with: { (snapshot) in
            if let dictionary = snapshot.value as? [String: Any] {
                let car = Car(dictionary: dictionary)
                completion?(car)
            }
        }, withCancel: nil)
    }

}

这是我从 Firebase 获取数据并将其添加到数组的函数(在 MainViewController 中编写):

internal func observeCars() { 
    /////I think this is the part that makes It doesn't appear because 
    if I delete this part, it works like I aspect
    APIService.observeCars {
        (car) in
        self.array.append(car)
        print(self.array.count)
        if self.array.count == totalCars {
            self.myGroup.leave()
        }
    }
     //////////
    }

有什么提示吗?谢谢

我在 mapView 中添加了 MKUserTrackingButton:

mapView.addSubview(userLocationButton)

对我有用。