Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我想要做的:
另一种选择是放下地图视图,关闭所有输入并在其上绘制。基本上要求一种栅格化地图视图的方法。想知道有没有人这样做过。
您可以使用以下方式将任何视图渲染为图像:
UIGraphicsBeginImageContextWithOptions(mapView.bounds.size, NO, 0.0f); [mapView.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage *mapImage = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext();