我正在使用此代码将图像保存到相册中,但图像正在保存在相机胶卷相册中。我想将图像保存在 WEAVE 相册中。我正在使用这段代码:
CGRect screenRect=CGRectMake(0, 0, viewPlay.frame.size.width, viewPlay.frame.size.height);
UIGraphicsBeginImageContext(screenRect.size);
CGContextRef ctx=UIGraphicsGetCurrentContext();
[[UIColor whiteColor] set];
CGContextFillRect(ctx, screenRect);
[self->viewPlay.layer renderInContext:ctx];
UIImage *screenImage=UIGraphicsGetImageFromCurrentImageContext();
UIImageWriteToSavedPhotosAlbum(screenImage, nil, nil, nil);
UIGraphicsEndImageContext();
这段代码对我来说很好。请给我任何建议,我在这里做了哪些更改以将图像保存到 WEAVE 文件夹中。