iOS毛玻璃磨砂特效

 iOS 8之后新添加了UIBlurEffect 类和 UIVisualEffectView 类来实现毛玻璃磨砂特效。

UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
UIVisualEffectView *effectview = [[UIVisualEffectView alloc] initWithEffect:blur];
effectview.frame = self.bounds;
[self addSubview:effectview];

毛玻璃特效类型:

UIBlurEffectStyleExtraLight

UIBlurEffectStyleLight

UIBlurEffectStyleDark

 

猜你喜欢

转载自blog.csdn.net/watson2017/article/details/84072082
今日推荐