美文网首页
//毛玻璃效果 (UIImageView)

//毛玻璃效果 (UIImageView)

作者: 伟伟机器人 | 来源:发表于2017-08-08 09:40 被阅读0次

//毛玻璃效果 (背景)
UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
UIVisualEffectView *effectview = [[UIVisualEffectView alloc] initWithEffect:blur];
effectview.frame = CGRectMake(0, 0, self.frame.size.width, self.frame.size.height);
//修改透明度
effectview.alpha = 0.5f;
[self.imageView addSubview:effectview];

相关文章

网友评论

      本文标题://毛玻璃效果 (UIImageView)

      本文链接:https://www.haomeiwen.com/subject/gaazlxtx.html