我在这里尝试将图像保存在图库中。我这样做了,但现在我想将捕获的图像保存在画廊的日期文件夹中。
- (IBAction)saveImage:(id)sender {
UIGraphicsBeginImageContextWithOptions(drawingSlate.bounds.size, drawingSlate.opaque, 0.0);
[drawingSlate.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage * img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(img, nil, nil, nil);
}
这里图像保存在照片中,但我想用正确的名称和日期文件夹保存。
谢谢