OStack程序员社区-中国程序员成长平台

标题: iOS MKMapView 问题 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 19:35
标题: iOS MKMapView 问题

我有一个显示一些自定义位置的 MKMapView。一切正常,直到我按下返回按钮。

SearchViewController 是我的类(class)名称。

有时我会得到:

[SearchViewController respondsToSelector:]: message sent to deallocated instance 0x73495f0

其他时间:

[SearchViewController mapView:regionDidChangeAnimated:]: message sent to deallocated instance 0x7343f20

或者:

[SearchViewController mapView:didUpdateUserLocation:]: message sent to deallocated instance 0x7343f20

   These functions are : 


-(void)mapViewMKMapView *)mapView didUpdateUserLocationMKUserLocation *)userLocation 
{

    MKCoordinateRegion mapRegion;   
    mapRegion.center = mapViewHandler.userLocation.coordinate;
    mapRegion.span.latitudeDelta = 0.2;
    mapRegion.span.longitudeDelta = 0.2;

    [mapViewHandler setRegion:mapRegion animated: YES];

}
- (void)mapViewMKMapView *)mapView didDeselectAnnotationViewMKAnnotationView *)view
{

    //do nothing
}

这通常发生在我进入 View 然后又退出时。

你能帮我摆脱这个错误吗?我在 .xib 文件中创建了 mapViewHandler,并在 viewDidLoad() 中使用了 [self.mapViewHandler setDelegate:self]; 方法。 当我按下返回按钮并离开此 View 时,有没有办法阻止所有内容加载(请求等)?



Best Answer-推荐答案


当您“返回”时,您的 SearchViewController 将从导航堆栈中拉出并被释放。但是,MKMapView 仍然处于事件状态,并且正在尝试调用不再存在的 View Controller 上的委托(delegate)方法。尝试在 View Controller dealloc 或 viewDidUnload 方法中将 mapView 委托(delegate)设置为 nil。

关于iOS MKMapView 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9517301/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4