0

我正在尝试在图像缩略图上覆盖播放按钮,当前缩略图显示使用:

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"];
}

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

4

1 回答 1

0

我的错 !

编码是正确的......!whiteBackground.png 是透明的....我必须使用显示按钮图像....

if(nil != self.analysis.image) {
    self.imageView.backgroundColor = [UIColor colorWithPatternImage:self.analysis.image];
    self.imageView.image = [UIImage imageNamed:@"displayButton.png"];
}
于 2013-05-04T15:49:36.250 回答