Приложение аварийно завершает работу при многократном запуске в GMSMAPVIEW

У меня есть приложение, которое находит места рядом с местоположением пользователя, однако приложение аварийно завершает работу во второй раз за исключением: фатальная ошибка: неожиданно обнаружен ноль при развертывании необязательного значения. На линии: self.googleMapView.animate(toLocation: координаты)

Я проверил, и googleMapView равен нулю, но я не понимаю, как он равен нулю или как он запускался в первый раз. Он начинает падать только при последующих попытках, если я удаляю и переустанавливаю приложение, оно работает нормально с первой попытки, но после этого происходит сбой даже после перезапуска приложения. Полный код ниже

import UIKit
import GoogleMaps
import GooglePlacePicker
import MapKit

 class MapViewController: UIViewController, CLLocationManagerDelegate {
var currentLongitude: CLLocationDegrees = 0
var currentLatitude: CLLocationDegrees = 0
var locationManager: CLLocationManager!
var placePicker: GMSPlacePickerViewController!
var googleMapView: GMSMapView!

@IBOutlet weak var mapViewContainer: MKMapView!

override func viewDidAppear(_ animated: Bool) {
    super.viewDidAppear(animated)
    self.googleMapView = GMSMapView(frame: self.mapViewContainer.frame)
    self.googleMapView.animate(toZoom: 18.0)
    self.view.addSubview(googleMapView)
}

override func viewDidLoad() {
    super.viewDidLoad()
    self.locationManager = CLLocationManager()
    self.locationManager.delegate = self
    self.locationManager.requestAlwaysAuthorization()
    self.locationManager.requestWhenInUseAuthorization()
    self.locationManager.startUpdatingLocation()
}

func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
    if let location:CLLocation = locations.last {
        self.currentLatitude = location.coordinate.latitude
        self.currentLongitude = location.coordinate.longitude
    }
    else {
        print("Location Error")
    }

    let coordinates = CLLocationCoordinate2DMake(self.currentLatitude, self.currentLongitude)
    let marker = GMSMarker(position: coordinates)
    marker.title = "I am here"
    marker.map = self.googleMapView
    self.googleMapView.animate(toLocation: coordinates)
}



private func locationManager(manager: CLLocationManager,
                     didFailWithError error: Error){
    print("An error occurred while tracking location changes : \(error.localizedDescription)")
}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}

}

1 ответ

Решение

Сбой довольно очевиден:

Вы устанавливаете делегата своего местоположения в viewDidLoad но создавая карту в viewDidAppear,

Если местоположение было известно iOS, вы получите сообщение раньше viewDidAppear позвоните так в строке: self.googleMapView.animate(toLocation: coordinates)Ваша карта все еще nil

Вы можете определить свою карту как необязательную: var googleMapView: GMSMapView?, или вы можете подождать, пока ваша карта будет определена, чтобы создать диспетчер местоположения.

Другие вопросы по тегам