美文网首页
iOS 实现毛玻璃效果

iOS 实现毛玻璃效果

作者: 安宇辛 | 来源:发表于2021-11-04 16:27 被阅读0次

    一:话不多说先上效果图


    可以让内容模糊

    二:实现
    1借鉴网上的FXBlurView可以实现毛玻璃效果
    2使用

    #import "FXblurView.h"
    
    @property (nonatomic)FXBlurView *fxView;
    
        self.fxView = [[FXBlurView alloc] initWithFrame:CGRectMake(0, 0, self.kbut.width, self.kbut.height)];
        //动态
        self.fxView.dynamic = YES;
        //模糊范围
        self.fxView.blurRadius = 5;
        //背景色
        self.fxView.tintColor = [UIColor clearColor];
        [self.tableView addSubview:self.fxView];
    
    

    相关文章

      网友评论

          本文标题:iOS 实现毛玻璃效果

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