现在我在Three20 ..我正在使用两个图像源来加载图像..这意味着
来自应用程序文件夹的LOcal folder.ie中的一种图像 其他来自网址.. 我的问题是我不知道如何从本地文件夹加载图像..并显示它...
我的代码如下......
BOOL fileExists = [[NSFileManager defaultManager] fileExistsAtPath:mpngPath];
if(fileExists==YES)
{
NSLog(@"image is present");
//load and display??
}
else {
NSLog(@"image is not present");
}
答案 0 :(得分:0)
像这样:
[UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"filename" ofType:@"png"]];
答案 1 :(得分:0)
用您的照片路径替换网址。我假设您将图像保存在文档目录中。
[NSString stringWithFormat:@"documents://%@",yourPhotoName];