Hello again!
I have a question, not sure the best way to word it. I'm trying to find a way to load a thumbnail version of an image that is set in a NSMutableDictionary.
In the NSMutableDictionary, I have:
Code:
@"test_image.jpg", @"image"
This is then called in the customise cell section:
Code:
[[cell imageView] setImage:[UIImage imageNamed:[[[data objectAtIndex:indexPath.section] objectAtIndex:indexPath.row] objectForKey:@"image"]]];
I would like it to load an image called
test_image_thumb.jpg
Is there a way I can add "_thumb.jpg" to the key?
Hmm, maybe this is too confusing.