我一直在尝试使用 NSFileManager 将图像缓存到我的沙盒应用程序的缓存目录中。不幸的是,我的代码似乎不起作用。
- (BOOL)saveImageToCacheFolder
{
NSFileManager *filemgr = [NSFileManager defaultManager];
NSString *cachePath = [[[filemgr URLsForDirectory:NSCachesDirectory inDomains:NSUserDomainMask] lastObject] absoluteString];
NSString *fullpath = [cachePath stringByAppendingPathComponent:@"test.jpg"];
NSURL *imageURL = [FlickrFetcher urlForPhoto:self.photoData format:FlickrPhotoFormatLarge];
NSData *imageData = [NSData dataWithContentsOfURL:imageURL];
BOOL success = false;
if (imageData != nil) {
success = [imageData writeToURL:[NSURL URLWithString:fullpath] atomically:true];
if (!success) NSLog(@"Did Not Managed to save the image");
}
return success;
}
这是我想要做的。首先,获取默认的 NSFileManager。其次,获取我的应用程序缓存目录的相对路径。第三,附加我的文件名(这里我现在只是写了测试)。第四,将我的图像转换为 NSData。四、将NSData对象写入指定路径。
编辑:添加 if 语句用于检查 imageData 是否为 nil