- (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
解决方法 一种可能性是系统实际上并没有使用setFrame:来设置视图的几何体.它可以使用setCenter:和setBounds:.另一种可能性是系统根本没有设置视图的几何体,并且在添加遮罩层之前,只在[super initWithFrame:frame]调用中设置了一次.无论如何,你应该覆盖layoutSubvIEws而不是覆盖setFrame:
- (voID)layoutSubvIEws { [super layoutSubvIEws]; self.layer.mask.frame = self.bounds;}总结
以上是内存溢出为你收集整理的ios – CALayer面具无法正常工作全部内容,希望文章能够帮你解决ios – CALayer面具无法正常工作所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)