ios6如何撰写2张图片

时间:2013-05-04 15:38:41

标签: ios6 uiimage

我正在尝试在图片缩略图上叠加播放按钮 currentl缩略图使用:

显示
if(nil != self.analysis.image) {
    self.imageView.image = self.analysis.image;
}

我尝试使用缩略图作为背景图像,并将透明度作为图像的播放按钮,但它根本不显示...

if(nil != self.analysis.image) {
    self.imageView.backgroundColor = [UIColor colorWithPatternImage:self.analysis.image];
    self.imageView.image = [UIImage imageNamed:@"whiteBackground.png"];
}

构成它们的最佳方法是什么?

1 个答案:

答案 0 :(得分:0)

我的错!

编码是对的...... !! white Background.png是透明的.... 我必须使用显示按钮图像....

if(nil != self.analysis.image) {
    self.imageView.backgroundColor = [UIColor colorWithPatternImage:self.analysis.image];
    self.imageView.image = [UIImage imageNamed:@"displayButton.png"];
}