我正在尝试UIImage
从文档目录加载 a 并将其设置为 a UIImageView
,如下所示:
NSString *pngfile = [[MyUtil getLocalDirectory] stringByAppendingPathComponent:@"school.png"];
NSLog(@"%@", pngfile);
if ([[NSFileManager defaultManager] fileExistsAtPath:pngfile]) {
NSData *imageData = [NSData dataWithContentsOfFile:pngfile];
UIImage *img = [UIImage imageWithData:imageData];
[schoolImage setImage:img];
}
但是,每当我尝试上述方法时,图像永远不会加载。图像在Documents/MyAppCustomDirectory/school.png
. 从该目录加载上述内容是否正确?
我还尝试了其他一些方法:UIImage imageWithContentsOfFile
,以及基于 SO 响应的其他方法。