【发布时间】:2011-07-13 09:01:23
【问题描述】:
现在我在 Three20.. 我正在使用两个图像源来加载图像..这意味着
本地文件夹中的一种图像类型。即应用程序文件夹中的图像 其他来自网址.. 我的问题是我不知道如何从本地文件夹加载图像..并显示它...
我的代码如下...
BOOL fileExists = [[NSFileManager defaultManager] fileExistsAtPath:mpngPath];
if(fileExists==YES)
{
NSLog(@"image is present");
//load and display??
}
else {
NSLog(@"image is not present");
}
【问题讨论】:
标签: iphone three20 photo-gallery