4

我正在尝试使用它的图层的 mask 属性将 UIView 屏蔽为图像。我见过无数的例子说,“就是这么简单”。然而,经过相当多的调整,我似乎无法重现所描述的结果。设置图层蒙版只会使视图消失。这是我正在使用的代码:

- (void)setMaskImage:(UIImage *)maskImage
{
    _maskImage = maskImage;

    self.layer.mask.contents = (__bridge id)(_maskImage.CGImage);
}

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self != nil) {
        self.layer.mask = [CALayer layer];
    }

    return self;
}

- (void)setFrame:(CGRect)frame
{
    [super setFrame:frame];

    self.layer.mask.frame = self.layer.bounds;
}

这是我试图用来掩盖视图的图像: http: //cl.ly/0a300G2r133V

4

3 回答 3

6

一种可能性是系统实际上并未setFrame:用于设置视图的几何形状。它可以使用setCenter:setBounds:。另一种可能性是系统根本没有设置视图的几何图形,并且它只在[super initWithFrame:frame]调用中设置一次,然后再添加遮罩层。

无论如何,而不是覆盖setFrame:,你应该覆盖layoutSubviews

- (void)layoutSubviews {
    [super layoutSubviews];
    self.layer.mask.frame = self.bounds;
}
于 2012-10-23T03:55:50.617 回答
1

以下按预期工作:

- (void)setMaskImage:(UIImage *)maskImage
{
    if (_maskView == nil) {
        _maskView = [[UIImageView alloc] initWithImage:maskImage];
        _maskView.frame = self.bounds;
        self.layer.mask = _maskView.layer;
    } else {
        _maskView.image = maskImage;
    }
}

- (UIImage *)maskImage
{
    return _maskView.image;
}

- (void)setBounds:(CGRect)bounds
{
    [super setBounds:bounds];

    _maskView.frame = self.bounds;
}

我不确定为什么只使用普通的 CALayer 不起作用,但这增加了使用可拉伸图像的好处。

于 2012-10-23T16:23:28.603 回答
0

您可以覆盖 UIView drawRect() 方法以使其在屏幕上的自定义外观。尝试使用以下方法。

//code for drawRect()

CGContextRef context = UIGraphicsGetCurrentContext();
CGContextAddRect(context,ImageFrame);
CGContextClip(context);
CGContextClearRect(context,ImageFrame);
[super drawRect:rect];

它将使您的视图在 imageFrame 区域中透明。

于 2012-10-23T04:36:29.253 回答