Post

Replies

Boosts

Views

Activity

Reply to MapKit is logging messages..
When I read about reentry, I thought maybe try to put it into a dispatch on main in async block       let region = MKCoordinateRegion(center: visibleArea.coordinate,                                                 latitudinalMeters: 500, longitudinalMeters: 500)       mapView.mapType = .hybrid       DispatchQueue.main.async       {          mapView.setRegion(region, animated: true)       } It remove the violet warning message in Xcode 12.3 and also don't overload the console with redundant messages. Its a workaround and I hope that our dear Apple Dev find the real cause and a better fix
Jan ’21