2

我正在尝试在后台已经有UIImageView的单元格中添加UIButton 。

我把这段代码放在configureCell

UIButton *mail = [[UIButton alloc] initWithFrame:CGRectMake(10, 270, 40, 40)];
[mail setImage:[UIImage imageNamed:@"mail.png"] forState:UIControlStateNormal];
mail.backgroundColor = [UIColor whiteColor];
[mail addTarget:self action:@selector(sendMail) forControlEvents:UIControlEventTouchUpInside];
[cell.contentView addSubview:mail];

它可以工作,但UIButton中的图像似乎更暗

原来的较暗的一个

我尝试了这些,但没有改变任何东西

mail.alpha = 1;
[cell.contentView bringSubviewToFront:mail];

有没有人对此有解释,以及解决方案。

4

2 回答 2

2

我曾经遇到过同样的问题,我通过为 UIControlStateHighlighted 设置按钮的图像来解决它

[mail setImage:[UIImage imageNamed:@"mail.png"] forState:UIControlStateHighlighted];

希望这对你有用

于 2012-05-07T17:52:09.323 回答
0

尝试这个

UIButton *mail=[UIButton buttonWithType:UIButtonTypeCustom];
mail.frame= CGRectMake(10, 270, 40, 40);
[mail setImage:[UIImage imageNamed:@"mail.png"] forState:UIControlStateNormal];
mail.backgroundColor = [UIColor clearColor];
[mail addTarget:self action:@selector(sendMail) forControlEvents:UIControlEventTouchUpInside];
[cell.contentView addSubview:mail];
于 2012-05-07T05:26:20.233 回答