MKMapView zoom to users location on viewDidLoad?

前端 未结 10 1688
有刺的猬
有刺的猬 2021-01-30 16:40

I\'m trying to zoom a map into the user\'s current location once the view loads, but I\'m getting the error \"** * Terminating app due to uncaught exception \'NSInvalidA

10条回答
  •  被撕碎了的回忆
    2021-01-30 17:40

    did you set showsUserLocation = YES? MKMapView won't update the location if it is set to NO. So make sure of that.

    It is very likely that the MKMapView object doesn't have the user location yet. To do right, you should adopt MKMapViewDelegate protocol and implement mapView:didUpdateUserLocation:

    map.delegate = self;
    
    ...
    -(void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation 
    {
        MKCoordinateRegion mapRegion;   
        mapRegion.center = mapView.userLocation.coordinate;
        mapRegion.span.latitudeDelta = 0.2;
        mapRegion.span.longitudeDelta = 0.2;
    
        [mapView setRegion:mapRegion animated: YES];
    }
    

提交回复
热议问题