美文网首页
UIImageView 添加毛玻璃效果

UIImageView 添加毛玻璃效果

作者: FlowYourHeart | 来源:发表于2017-04-28 09:39 被阅读6次

    记录一下

    主要是自己很少用,所以记录一下。

    _imageView = [[UIImageView alloc] initWithFrame:self.bounds];
    [self addSubview:_imageView];
    UIBlurEffect* effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
    UIVisualEffectView* effectView = [[UIVisualEffectView alloc] initWithEffect:effect];
    effectView.frame = _imageView.bounds;
    [_imageView addSubview:effectView];
    
    

    相关文章

      网友评论

          本文标题:UIImageView 添加毛玻璃效果

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