MKMapView Not Loading When Called on an NSThread?
- by Chris
I am creating a MKMapView in a method named "generateMap". From inside viewDidLoad, this works:
[self generateMap];
but this causes the map to quickly load and then disappear, leaving only the blank grey grid:
[NSThread detachNewThreadSelector:@selector(spinTheSpinner) toTarget:self withObject:nil];
Any ideas why this might be happening when I call the method through a thread?