Centering map against user's location
问题 I'd like to center a map (mapkit) against the user's location. I do the following in the simulator but only get a blue map with no content. What steps should I be taking? MKCoordinateRegion region; MKCoordinateSpan span; span.latitudeDelta=0.2; span.longitudeDelta=0.2; CLLocationCoordinate2D location; location.latitude = mapView.userLocation.location.coordinate.latitude; location.longitude = mapView.userLocation.location.coordinate.longitude; region.span=span; region.center=location; [self