UIImageView覆盖单元格中的文本

时间:2013-08-29 14:56:31

标签: ios text uiimageview cover

我有一个覆盖单元格内部文本的UI图像视图。如何将图像移动到背景以便显示文本?这是图像的代码。

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

1 个答案:

答案 0 :(得分:2)

也许这样的事情对你有用:

[cell.contentView sendSubviewToBack:cell.imageView];