I cant get my Image(.png) to display.
I check that it exists at the path I use, and it does. But no image appears.
Here is what I\'ve been trying:
Try to use
NSData *imgData = [NSData dataWithContentsOfFile:imgPath]; UIImage *thumbNail = [[UIImage alloc] initWithData:imgData];
or
NSData *imgData = [[NSData alloc] initWithContentsOfURL:[NSURL fileURLWithPath:imgPath]]; UIImage *thumbNail = [[UIImage alloc] initWithData:imgData];