【发布时间】:2011-04-15 00:03:45
【问题描述】:
我有一个主要透明的图像,我想将它作为覆盖添加到 UITableViewCell 的 imageView.image。
但是我不知道该怎么做。我需要合并图像吗?或者我可以在另一个之上添加一个吗?
如果你能提供这方面的代码,那就太好了!
【问题讨论】:
标签: iphone objective-c xcode image-processing uiimage
我有一个主要透明的图像,我想将它作为覆盖添加到 UITableViewCell 的 imageView.image。
但是我不知道该怎么做。我需要合并图像吗?或者我可以在另一个之上添加一个吗?
如果你能提供这方面的代码,那就太好了!
【问题讨论】:
标签: iphone objective-c xcode image-processing uiimage
我设法解决了:
[cell insertSubview:[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"ListViewAlbumOverlay.png"]] belowSubview:cell.imageView];
【讨论】: