关于应用程序会话之间数据持久性的简单问题。
我的应用程序允许用户使用UIImagePickerController从库中选择图像。然后将所选照片用作应用程序的背景。
由于UIImagePickerController委托方法实际上返回的是图像而不是图像路径,我想知道在用户会话上保留此图像的最佳方法是什么?
我现在不需要保留任何其他数据,因为其他所有数据都是从SQL Server中提取的,但我不希望增加必须将图像存储在服务器中的开销,这意味着每次用户打开应用程序时,首先必须将背景图像从服务器下载到字节数组中,然后转换为图像。
我找到了以下可以保存图像的代码:
- (void)saveImage:(UIImage *)image withName:(NSString *)name {
//save image
NSData *data = UIImageJPEGRepresentation(image, 1.0);
NSFileManager *fileManager = [NSFileManager defaultManager];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *fullPath = [documentsDirectory stringByAppendingPathComponent:name];
[fileManager createFileAtPath:fullPath contents:data attributes:nil];
}
我目前不在Mac上,因此我无法测试此代码,但我对上述代码有几个问题:
我不希望很多文件混乱文件系统。所以我想要一个背景文件(background.png);上面的代码将如何处理此文件已存在的情况?
它会覆盖现有文件还是会抛出错误?
我如何再次加载图片?
答案 0 :(得分:1)
您必须先删除该文件:
- (void)saveImage:(UIImage *)image withName:(NSString *)name {
//save image
NSData *data = UIImageJPEGRepresentation(image, 1.0);
NSFileManager *fileManager = [NSFileManager defaultManager];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *fullPath = [documentsDirectory stringByAppendingPathComponent:name];
NSError *error = nil;
if( [fileManager fileExistsAtPath:fullPath] ){
if( ! [fileManager removeItemAtPath:fullPath error:&error] ) {
NSLog(@"Failed deleting background image file %@", error);
// the write below should fail. Add your own flag and check below.
}
}
[data writeToFile:fullPath atomically:YES];
}
回读应该如下工作:
...
UIImage *bgImage = [UIImage imageWithContentsOfFile:fullPath];
...