当前位置:编程学习 > wap >>

与百度地图使用有关的一个问题

     在UITabBarController的多个页签中都使用了mapView。当在不同地图的页签切换后,会出现地图无法拖动的情况。mapView的声明周期都是按照官方的demo写的。
(void)viewWillAppear:(BOOL)animated      
{      
    [_mapView viewWillAppear];      
    _mapView.delegate = self; // 此处记得不用的时候需要置nil,否则影响内存的释放      
}      
-(void)viewWillDisappear:(BOOL)animated      
{      
        [_mapView viewWillDisappear];      
      _mapView.delegate = nil; // 不用时,置nil      
}
  

请问这种情况该怎么解决?
补充:移动开发 ,  iPhone
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,