现在我在 Three20.. 我正在使用两个图像源来加载图像..这意味着
一种来自本地文件夹的图像。即来自应用程序文件夹的图像其他来自 url..我的问题是我不知道如何从本地文件夹加载图像..并显示它...
我的代码如下...
BOOL fileExists = [[NSFileManager defaultManager] fileExistsAtPath:mpngPath];
if(fileExists==YES)
{
NSLog(@"image is present");
//load and display??
}
else {
NSLog(@"image is not present");
}