For some reason, I can not seem to change the default position of an image in a grouped tableview cell.
In the cellForRowAtIndexPath method I use the following to load the image:
cell.imageView.image = [UIImage imageWithContentsOfFile:MainImagePath];
I've been experimenting with the following to adjust the position of the image but have had no luck.
cell.contentMode = UIViewContentModeCenter;
I've also tried this with no luck.
cell.imageView.contentMode = UIViewContentModeCenter;