我正在尝试在后台已经有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];
有没有人对此有解释,以及解决方案。