我在MKMapView的地图上有一个屏幕。如何将屏幕复制到图像并像简单的UIImageView一样使用它。

最佳答案

这可能有效;

UIGraphicsBeginImageContextWithOptions(MKMapView.bounds.size, MKMapView.opaque, 0.0);
[MKMapView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

关于iphone - 如何在UIImageView中复制MKMapView的屏幕?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10274417/

10-13 04:00