我将图像保存在文件夹“pic”中(图像的完整路径示例:/Users/apple/Library/Application Support/iPhone Simulator/5.1/Applications/2526EA68-229D-40BC-BB57-56E46EB55691/Documents/pic/1.jpg
)。
通过调用“
”获得“文档”路径NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
所以路径肯定是正确的。但是当我这样做时:
[tempImage setImage:[UIImage imageNamed:fullImagePath]]
似乎找不到图像,因为图像未显示。我想知道这个问题的原因以及如何解决它?
答案 0 :(得分:6)
imageNamed
仅适用于主包中的图像,而不适用于子目录。
使用
[UIImage imageWithContentsOfFile:filePath]
代替。