【iOS 知识汇】iOS 8之后新添加了UIBlurEffect 类和 UIVisualEffectView 类来实现毛玻璃磨砂特效

UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
UIVisualEffectView *effectview = [[UIVisualEffectView alloc] initWithEffect:blur];
effectview.frame = self.view.bounds;
[self.view addSubview:effectview];
posted on 2021-10-27 11:33  wp7ers  阅读(112)  评论(0编辑  收藏  举报