这里我试图在图库中保存图像。我这样做但现在我想将捕获的图像保存在图库中的日期文件夹中。
- (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);
}
此处图像保存在照片中,但我想使用正确的名称和日期文件夹进行保存。
由于