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:
You need to give proper file url which will be
NSURL *imgURL = [NSURL fileURLWithPath:imgPath];
then initialize your image with proper imgURL var and finally to add the image to your cell you need to do the following
[cell.contentView addSubview:imgView];
I hope it may solve your problem.