UIImageView Covering Text in Cell

182 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 answers

1
Lucas Eduardo On

Maybe something like this will work for you:

[cell.contentView sendSubviewToBack:cell.imageView];