美文网首页
UIVisualEffectView

UIVisualEffectView

作者: William_ | 来源:发表于2018-05-21 10:42 被阅读82次

    写一个模糊view,注意如果需在在此view上添加subView,需要使用visualEffectView的contentView添加

    self.lightView = [[UIVisualEffectView alloc] initWithEffect:[UIBlurEffect effectWithStyle:UIBlurEffectStyleExtraLight]];
        _lightView.frame = CGRectMake(20, 30, 200, 200);
        [self.imageView1 addSubview:_lightView];
    
        
        UILabel *label = [[UILabel alloc] init];
        label.text = @"Hello world";
        label.textColor = [UIColor blackColor];
        [_lightView.contentView addSubview:label];
        label.frame = CGRectMake(20, 20, 100, 30);
    

    相关文章

      网友评论

          本文标题:UIVisualEffectView

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