1

保存时我的图像有问题,我的图像上方有不同的图层,如绘图视图和我的文本字段,但我不希望我的图层添加到子视图,因为如果我将它添加到我的子视图我的绘图视图,文本字段不能再次编辑,因为它已经附加在图像上。

4

1 回答 1

1
 CGSize sizePic = CGSizeMake(320, 440);
    UIGraphicsBeginImageContext(sizePic);
    [self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *imagePic = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    UIImageWriteToSavedPhotosAlbum(imagePic, nil, nil, nil);

我能够自己想办法。:)

于 2012-11-08T00:05:37.087 回答