UIImageView Covering Text in Cell

192 Views Asked by At

I have a UI Image View that is covering up text inside cells. How can I move the image to the background so the text is showing? Here is the code for the image.

    // image view
[cell.imageView setImageWithURL:[NSURL URLWithString:[thisMovie objectForKey:@"poster_image"]] placeholderImage:[UIImage imageNamed:@"placeholder.jpg"]];
1

There are 1 best solutions below

1
On

Maybe something like this will work for you:

[cell.contentView sendSubviewToBack:cell.imageView];