如何从iOS8.3中的文档目录加载图像+

时间:2015-08-20 07:50:39

标签: objective-c xcode6.4 ios8.4

iOS8.4和Xcode6.4 注意: 数据库路径: /Library/Developer/CoreSimulator/Devices/FD6CE853-5AE2-48DA-A9B1-E69A6BB4F9F8/data/Containers/Data/Application/BED214A4-65E1-4BD8-9908-29E07FD47EBA/Documents/DB/copybox.db
保存时间文件路径: /Library/Developer/CoreSimulator/Devices/FD6CE853-5AE2-48DA-A9B1-E69A6BB4F9F8/data/Containers/Data/Application/BED214A4-65E1-4BD8-9908-29E07FD47EBA/Documents/Images/010521PMThursdayAug2015.png我想从文档目录中加载图像。我尝试了很多方法,如下所述。

NSString*path = [info valueForKey:@"copied_img_path"];
    path = [path stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
    path = [NSString stringWithFormat:@"file:/%@",path];//
    NSLog(@"\n##IMAGE PATH##:-%@\n",path);
//Tried with this
    [imageview setImageWithURL:[NSURL fileURLWithPath:path]];
//Tried with this
    NSURL* pathurl = [NSURL URLWithString:path];
    [imageview setImageURL:pathurl];
//Tried with this
    UIImage* image = [UIImage imageWithContentsOfFile:path];
    [imageview setImage: image];


但没有成功。
然后我在文档目录中保存图像时检查文件路径。没关系。但下次我运行此代码时,当前的应用程序文件夹将消失。所以,在iOS8.3 +中访问文档目录有任何变化,或者我犯了任何错误。请让我知道。
提前致谢

1 个答案:

答案 0 :(得分:1)

您应该base.XXX()保存完整路径,路径中的never会发生变化。

只需请求文档目录的路径,并将图像的相对文件路径添加到此路径。