バックグラウンドにすでに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];
誰かがこれについての説明と解決策を持っていますか?