如何在iphone sdk中截取UIImageView的截图

时间:2012-08-28 14:17:12

标签: iphone

我想拍摄一张imageview的截图。并将该屏幕截图设置为另一个imageview中的图像。我抓住了这个过程。请帮帮我。

2 个答案:

答案 0 :(得分:5)

UIGraphicsBeginImageContext(imageView.frame.size);
 [imageView.layer renderInContext:UIGraphicsGetCurrentContext()];
 UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
 UIGraphicsEndImageContext();
yourSecondImageView.image = viewImage;

答案 1 :(得分:2)

您应该获取UIImageView的UIImage属性,并将其分配给您想要的其他图像视图。