Answer by Vlad for In xcode 9 with iOS 11 - issue with loading of Map tiles...
Had same problem my BROKEN code looked something like: class ViewController: UIViewController { fileprivate var mapView = MKMapView() override func viewDidLoad() { super.viewDidLoad() // Add the...
View ArticleAnswer by Alex Shvets for In xcode 9 with iOS 11 - issue with loading of Map...
I had exactly same problem, spent a lot of time to find a solution and finally I did. So in my case problem was with wrong inisializing. Usually you would write let mapView = MKMapView() on the top of...
View ArticleAnswer by Christoffer for In xcode 9 with iOS 11 - issue with loading of Map...
Make sure you are not using dispatch_async for the map. I had the following function that did not work in iOS11 dispatch_async(dispatch_get_main_queue(), ^{ @synchronized(_queue) { if(poppedMapView !=...
View ArticleAnswer by Abu Ul Hassan for In xcode 9 with iOS 11 - issue with loading of...
I Think you should try By removing - (void)viewDidLayoutSubviews { [super viewDidLayoutSubviews]; } and Putting following code into your View Didload Method CGFloat edge = 10.0f; UIImage...
View ArticleIn xcode 9 with iOS 11 - issue with loading of Map tiles on first run
--Updated with new findings -- Tested in both simulator and on device. Maps are not loaded correctly when the app is run from a cold start. Tiles are not being displayed. mapViewDidFinishLoadingMap is...
View Article