在地图中包裹纬度和经度时崩溃

Crash when wrapping latitude and longitude in map

我获取了当前用户的地图位置,并将其呈现在地图上,以他的位置为地图中心。 它在线上崩溃

let currentLatitude = (locationManager.location?.coordinate.latitude)!
let currentLongitude = (locationManager.location?.coordinate.longitude)!

错误 "Could not inset legal attribution from corner 4"

我认为它与纬度和经度的力包裹有关。我该怎么做才能解决这个错误?

这是我的代码:

// Location Manager settings
locationManager.delegate = self
locationManager.desiredAccuracy = kCLLocationAccuracyBest
locationManager.requestWhenInUseAuthorization()
locationManager.startUpdatingLocation()

let currentLatitude = (locationManager.location?.coordinate.latitude)!
let currentLongitude = (locationManager.location?.coordinate.longitude)!

//Map settings
mapMyLocation.showsUserLocation = true
mapMyLocation.delegate = self
let locationcoordinates = CLLocationCoordinate2D(latitude: currentLatitude, longitude: currentLongitude)
let zoomSpan = MKCoordinateSpan(latitudeDelta: 0.5, longitudeDelta: 0.5)
let region = MKCoordinateRegion(center: locationcoordinates, span: zoomSpan)
mapMyLocation.setRegion(region, animated: true)

试试下面的代码

    if let currentLatitude = locationManager.location?.coordinate.latitude,
        let currentLongitude = locationManager.location?.coordinate.longitude {

        //Map settings
        mapMyLocation.showsUserLocation = true
        mapMyLocation.delegate = self
        let locationcoordinates = CLLocationCoordinate2D(latitude: currentLatitude, longitude: currentLongitude)
        let zoomSpan = MKCoordinateSpan(latitudeDelta: 0.5, longitudeDelta: 0.5)
        let region = MKCoordinateRegion(center: locationcoordinates, span: zoomSpan)
        mapMyLocation.setRegion(region, animated: true)
    }