5

ぼやけている UIButton のサブクラスがあり、見栄えがします。

- (id)initWithFrame:(CGRect)frame
    {
        if (self = [super initWithFrame:frame])
        {
            self.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.0];
            UIVisualEffect *blurEffect;
            blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleDark];

            UIVisualEffectView *visualEffectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
            visualEffectView.frame = self.bounds;

            [self insertSubview:visualEffectView atIndex:0];
            visualEffectView.userInteractionEnabled = NO;

            self.layer.cornerRadius = 23.8;
            self.clipsToBounds = YES;

            self.titleLabel.font = [UIFont fontWithName:@"DINCondensed-Bold" size:15.0];
        }
        return self;
    }

これらのボタンは頻繁に移動 (変換)、サイズ変更、スケーリングする必要があり、それらのアクションを実行すると、ぼかしが消えて半透明のビューになります。これは、CGAffineTransformation を使用して、フレーム/センターを使用して移動している場合に発生します。

これを治す方法はありますか?

4

1 に答える 1