1

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

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

1 回答 1

2

也许这样的事情会为你工作:

[cell.contentView sendSubviewToBack:cell.imageView];
于 2013-08-29T15:05:58.643 回答