我想将 UIWebView 中的图像保存到 iOS 应用程序的照片库中。
我还阅读了 [http://stackoverflow.com/questions/6766671/how-to-saving-uiwebview-content-into-photo-library][1]
但我无法保存。我在保存方法中编写了以下代码。
- (IBAction)saveImage:(id)sender
{
NSString *sizeOfImageByJs = [NSString stringWithFormat:@"document.body.scrollWidth;"
"document.body.scrollHeight;"
"window.innerWidth;"
"window.innterHeight;"];
NSString *urlToSave = [webViewOfPhoto stringByEvaluatingJavaScriptFromString:sizeOfImageByJs];
NSURL *imageUrl = [NSURL URLWithString:urlToSave];
NSData *imageData = [NSData dataWithContentsOfURL:imageUrl];
UIImage *image = [UIImage imageWithData:imageData];
UIImageWriteToSavedPhotosAlbum(image, self, nil, nil);
}
它不保存任何东西。如何保存?谢谢。