美文网首页
iOS毛玻璃效果

iOS毛玻璃效果

作者: 码农小白 | 来源:发表于2017-03-15 10:03 被阅读35次

    效果如下图

    Paste_Image.png

    代码如下

    - (void)creatVisulBg {
        UIImageView *bgImg = [[UIImageView alloc] initWithFrame:self.bounds];
        bgImg.image = [UIImage imageNamed:@"bg.jpeg"];
        bgImg.contentMode = UIViewContentModeScaleToFill;
        bgImg.userInteractionEnabled = YES;
        [self addSubview:bgImg];
        
        //添加毛玻璃效果
        UIVisualEffectView *effectView = [[UIVisualEffectView alloc] initWithEffect:[UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]];
        effectView.frame = CGRectMake(0, 0, bgImg.frame.size.width, bgImg.frame.size.height);
        [bgImg addSubview:effectView];
    }
    

    相关文章

      网友评论

          本文标题:iOS毛玻璃效果

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