图像保存在库中的动态创建文件夹中

时间:2012-08-29 05:20:04

标签: ipad

这里我试图在图库中保存图像。我这样做但现在我想将捕获的图像保存在图库中的日期文件夹中。

- (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);

 }

此处图像保存在照片中,但我想使用正确的名称和日期文件夹进行保存。

由于

0 个答案:

没有答案