I have images in my app's documents directory but I want to load images in tableView as Lazy Image Load.
So I want to use
[cell.imageView setImageWithURL:[NSURL URLWithString:<imagePathFromMyDocumentsDirectory>]
placeholderImage:[UIImage imageNamed:@"placeholder.png"]];
Now, this [NSURL URLWithString:<imagePathFromMyDocumentsDirectory>"] returns nil.
What should be done?
EDIT:
NSString *FundNames = [[array1 objectAtIndex:j] valueForKey:@"FundName"];
NSDate *dates=[NSDate date];
NSDateFormatter *ab = [[NSDateFormatter alloc] init];
//[ab setDateFormat:@"yyyy-MM-dd"];
[ab setDateFormat:@"yyyy-MM-dd"];
NSString *dateStr = [ab stringFromDate:dates];
NSString *imageName =[NSString stringWithFormat:@"%@_%@.png",FundNames,dateStr];
//NSFileManager *fileManager = [NSFileManager defaultManager];
NSString *documentsDirectory = [self getImagePath];
NSLog(@"Image Path : %@",documentsDirectory);
NSError *error1;
NSString *filepath1;
NSArray *files = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:documentsDirectory error:&error1];
if (files == nil) {
NSLog(@"Error reading contents of documents directory: %@", [error1 localizedDescription]);
}
NSLog(@"FileName: %@",imageName);
BOOL success = NO;
for (NSString *file in files)
{
NSLog(@"file in Files is %@",file);
if([file isEqualToString:imageName])
{
filepath1 = [documentsDirectory stringByAppendingPathComponent:file];
NSLog(@"Full Path :%@",filepath1);
success = YES;
break;
}
}
NSURL *imageURL = [NSURL URLWithString:filepath1];
[cell.imageView setImageWithURL:imageURL placeholderImage:[UIImage imageNamed:@"newfund.png"]];
Here , filepath1 is equal to <imagePathFromMyDocumentsDirectory>
<imagePathFromMyDocumentsDirectory>and also I am sure that I use[NSURL URLWithString:<imagePathFromMyDocumentsDirectory>"]. What could be wrong? – Parth Bhatt Apr 11 '11 at 10:13