iOS毛玻璃效果

UIBlurEffect blur = [UIBlurEffect effectWithStyle:1];
UIVisualEffectView effectView = [[UIVisualEffectView alloc] initWithEffect:blur];
effectView.frame = backImage.bounds;
[backImage addSubview:effectView];
effectView.alpha = 0.5;

你可能感兴趣的:(iOS毛玻璃效果)