【发布时间】:2016-10-24 12:27:20
【问题描述】:
我正在尝试将来自 web 服务的图像存储在文档目录中。对于存储的图像,我想从表格视图的文档目录中加载它。
图片可从以下网址访问:- http://Address/App/User/Image/Puegeot_E7
从 web 服务获取成功,但是从文档目录中我不断得到空图像。似乎找不到这里有什么问题。
- (void)saveImage:(UIImage*)image withName:(NSString *)imageName
{
if (image != nil)
{
NSArray *paths = NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString* path = [documentsDirectory stringByAppendingPathComponent:imageName];
NSLog(@"Saving path %@",path); // Saving path /Users/computername/Library/Developer/CoreSimulator/Devices/7277F3D3-298C-451A-8607-8070A08650C7/data/Containers/Data/Application/D3AF4DD9-A4CD-42C8-A8EB-0F15C271EE61/Documents/CabImage/Puegeot_E7
NSData* data = UIImagePNGRepresentation(image);
[data writeToFile:path atomically:YES];
}
}
- (UIImage *)getImageFromURL:(NSString *)fileURL
{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *path = [documentsDirectory stringByAppendingPathComponent:fileURL];
NSData * data = [NSData dataWithContentsOfURL:[NSURL URLWithString:path]];
NSLog(@"data %@",data); //This returns (null)
UIImage *result = [UIImage imageWithData:data];
return result;
}
在 tableView 中,这是我尝试从文档目录加载的方式。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//default initialisation stuff
NSDictionary *obj = [responseArray objectAtIndex:indexPath.row];
cell.imgVW.image = [UIImage imageNamed:@"default-car.png"];
NSString *imgPath = obj[@"cabimage"];
NSLog(@"imgPath : %@",imgPath); // imgPath : Image/Puegeot_E7
UIImage *imgFromDisk = [self getImageFromURL:imgPath];
NSLog(@"imgFromDisk - %@",imgFromDisk); -> (null)
if (imgFromDisk)
{
cell.imgVW.image = imgFromDisk;
}
else
{
//download
NSURL *imageURL = [NSURL URLWithString:[NSString stringWithFormat:@"%@User/%@",BASE_URL,imgPath]];
self.task = [self.session downloadTaskWithURL:imageURL
completionHandler:^(NSURL *location,NSURLResponse *response,NSError *error)
{
NSData *img_data = [NSData dataWithContentsOfURL:imageURL];
if (img_data)
{
UIImage *img = [UIImage imageWithData:img_data];
dispatch_async(dispatch_get_main_queue(), ^{
ListCell *cell = (id)[tableView cellForRowAtIndexPath:indexPath];
cell.imgVW.image = img;
[self saveImage:img withName:imgPath];
});
}
}];
[self.task resume];
}
}
【问题讨论】:
标签: ios objective-c uitableview uiimage nsdocumentdirectory