如何将MapView保存到相册,以便以后附加到我的iPhone应用程序中创建的电子邮件中?
答案 0 :(得分:1)
试试这个:
UIGraphicsBeginImageContext(map.layer.bounds.size);
[map.layer renderInContext:UIGraphicxGetCurrentContext()];
UIImage *mapImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
如果他们允许制作和分发地图的屏幕截图,也许您还应该仔细检查Google的许可条款。