美文网首页iosiOS_UIKit
UIBlurEffect毛玻璃

UIBlurEffect毛玻璃

作者: 絮语时光杨 | 来源:发表于2018-05-14 10:46 被阅读3次

// 创建显示图片
UIImageView *imageView = [[UIImageView alloc] init];

/** 毛玻璃特效类型

  • UIBlurEffectStyleExtraLight,
  • UIBlurEffectStyleLight,
  • UIBlurEffectStyleDark
    */
    UIBlurEffect *blurEffect = [UIBlurEffecteffectWithStyle:UIBlurEffectStyleLight];

// 毛玻璃视图
UIVisualEffectView *effectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];

//添加到要有毛玻璃特效的控件中
effectView.frame = imageView.bounds;
[imageView addSubview:effectView];

//设置模糊透明度
effectView.alpha = 0.5f;

相关文章

网友评论

    本文标题:UIBlurEffect毛玻璃

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