ios 背景色模糊

UIBlurEffect *beffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleExtraLight];

UIVisualEffectView *view = [[UIVisualEffectView alloc]initWithEffect:beffect];

view.frame = self.bounds;

[self addSubview:view];

你可能感兴趣的:(ios 背景色模糊)