高斯模糊(iOS8.0以上)

UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
    UIVisualEffectView *effectView = [[UIVisualEffectView alloc]initWithEffect:blur];
    effectView.frame = cell.imgView.frame;
    [cell.imgView addSubview:effectView];
高斯模糊(iOS8.0以上)_第1张图片
screenshot.png
高斯模糊(iOS8.0以上)_第2张图片
EBE34B29-CFB7-48C1-A56A-EDDB19FDA15D.png

你可能感兴趣的:(高斯模糊(iOS8.0以上))