我在 UITableView 中有一个 MKMapView 作为自定义单元格(不要问;)-不知道它是否真的重要),为此我注册了一个 regionDidChangeAnimated 委托方法。加载 UITableView 时,此方法会被调用 3 次 - 一次使用实际区域,然后再调用两次,使用远离的区域。在模拟器中,我始终得到一个中心区域(+37.43997405,-97.03125000)。在设备上,它似乎取决于位置管理器报告的位置,它初始化地图视图。
为什么我收到三个 regionDidChangeAnimated 调用?为什么最后两个的中心坐标会关闭?
这是我用来获取中心坐标的代码:
- (void)mapView:(MKMapView *)mapView regionDidChangeAnimated:(BOOL)animated {
CLLocation *l = [[CLLocation alloc] initWithLatitude:self.mapView.centerCoordinate.latitude longitude:self.mapView.centerCoordinate.longitude];
(....)