1. ホーム
  2. ios

[解決済み] UIImageViewでの色合いの使用

2022-07-27 16:32:16

質問

私は、独自のサブクラスである UIButton . 私は UIImageView を追加し、画像を追加しています。画像の上にティントカラーで塗りたいのですが、うまくいきません。

今のところ、私は

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {

        self.backgroundColor = [UIColor clearColor];
        self.clipsToBounds = YES;

        self.circleView = [[UIView alloc]init];
        self.circleView.backgroundColor = [UIColor whiteColor];
        self.circleView.layer.borderColor = [[Color getGraySeparatorColor]CGColor];
        self.circleView.layer.borderWidth = 1;
        self.circleView.userInteractionEnabled = NO;
        self.circleView.translatesAutoresizingMaskIntoConstraints = NO;
        [self addSubview:self.circleView];

        self.iconView = [[UIImageView alloc]init];
        [self.iconView setContentMode:UIViewContentModeScaleAspectFit];
        UIImage * image = [UIImage imageNamed:@"more"];
        [image imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
        self.iconView.image = image;
        self.iconView.translatesAutoresizingMaskIntoConstraints = NO;
        [self.circleView addSubview:self.iconView];
        ...

と選択時に:

- (void) setSelected:(BOOL)selected
{
    if (selected) {
        [self.iconView setTintColor:[UIColor redColor]];
        [self.circleView setTintColor:[UIColor redColor]];
    }
    else{
        [self.iconView setTintColor:[UIColor blueColor]];
        [self.circleView setTintColor:[UIColor blueColor]];
    }  
}

何がいけなかったのでしょうか?(画像の色はいつも元のままです)

どのように解決するのですか?

このコードの代わりに

[image imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];

を持てばよい。

image = [image imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];

これを Swift 4.1

image = UIImage(named: "name")!.withRenderingMode(.alwaysTemplate)