MKMapSnapshotter 内存崩溃 - 在 UITableView 中多次调用

MKMapSnapshotter memory crash - multiple calls in a UITableView

我们有一个 iOS 应用程序,它有一个 UITableView,其中包含在单元格出现时生成的地图快照。我们使用的示例列表只是显示基于模型 class 中提供的 lat/long 的地图快照。我开始注意到内存崩溃,所以我将代码减少到最低限度。当我们只做快照而不对结果做任何事情时,崩溃仍然会发生。请参阅下面的代码,它包含在我们的自定义单元格中并通过 cellForItemAtIndexPath 方法调用:

private func testMapSnapshot(viewModel: StreamViewModel)
{
    let latDelta:CLLocationDegrees = 0.005
    let lonDelta:CLLocationDegrees = 0.005

    let span:MKCoordinateSpan = MKCoordinateSpanMake(latDelta, lonDelta)
    let location:CLLocationCoordinate2D = CLLocationCoordinate2DMake(viewModel.coordinate.latitude, viewModel.coordinate.longitude)
    let region:MKCoordinateRegion = MKCoordinateRegionMake(location, span)

    let options = MKMapSnapshotOptions()
    options.region = region
    options.size = mapImageView.frame.size
    options.scale = UIScreen.mainScreen().scale

    viewModel.mapSnapshotter = MKMapSnapshotter(options: options)
    viewModel.mapSnapshotter!.startWithCompletionHandler() { snapshot, error in
        // do nothing
    }
}

didEndDisplayingCell 中,我确保取消 mapSnapshotter。请参阅以供参考(我们将模型列表保留在包含表格视图的主要 VC class 中):

func collectionView(collectionView: UICollectionView, didEndDisplayingCell cell: UICollectionViewCell, forItemAtIndexPath indexPath: NSIndexPath) 
    let model = viewModel?[indexPath.item] {
        model.mapSnapshotter?.cancel()
        model.mapSnapshotter = nil
    }
}

请注意,在执行最后一步之前,它很早就崩溃了。但是现在,如果您开始快速向下滚动列表,它就会开始卡顿并且不会停止卡顿。如果您在大约 150 行的列表中上下移动,我们将在不到 30 秒的时间内开始看到内存警告然后崩溃。

我通过 Instruments 运行 这个,但不是很有用。看起来 Heap 和 Anonymous VM 分配正在逐渐增加,可能导致崩溃。参考见:

我在外面看到了这个 post: MKMapSnapshotter uses incredible amounts of CPU & RAM 但它没有得到答复,也没有真正解决为什么内存不会被释放的问题。

有什么想法可以继续吗?提前谢谢你,如果我能提供更多信息,请告诉我。

虽然我无法找到解决此特定问题的方法,但我能够通过仅在 scrollView 停止时调用地图快照程序来解决它 - 然后它会抓取所有可见单元格并仅加载这些单元格。这样它可以最大限度地减少对此 API 的调用次数并防止内存问题,而不是在您通过 cellForRow 方法向下滚动列表时不断调用它。