我在保存时对我的图像有问题,有不同的图层,如图纸视图和图片。我的图像在我的图像上方,但我不希望我的图层添加到子视图,因为如果我将它添加到我的子视图我的图纸视图,则文本字段无法再次编辑,因为它已经附加在图像上。
答案 0 :(得分:1)
CGSize sizePic = CGSizeMake(320, 440);
UIGraphicsBeginImageContext(sizePic);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *imagePic = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(imagePic, nil, nil, nil);
我能够独立思考。 :)