IOS关于毛玻璃效果的使用

来源:互联网 发布:java自行车价格表 编辑:程序博客网 时间:2024/05/16 17:44

苹果公司在ios8后提供了毛玻璃控件就是这个UIVisualEffectView,UIVisualEffectView本身继承UIView,本身提供了几种样式:

typedefNS_ENUM(NSInteger, UIBlurEffectStyle) {

    UIBlurEffectStyleExtraLight,

    UIBlurEffectStyleLight,

    UIBlurEffectStyleDark,

    UIBlurEffectStyleExtraDark

    UIBlurEffectStyleRegular 

    UIBlurEffectStyleProminent 

}

使用的时候比较简单:

- (UIVisualEffectView *)effectview{

   if (!_effectview) {

       _effectview = [[UIVisualEffectViewalloc]initWithEffect:[UIBlurEffecteffectWithStyle:UIBlurEffectStyleLight]];

    }

   return_effectview;

}


[selfaddSubview:self.effectview];


add到需要的地方即可,frame设置和UIView一样。



1 0
原创粉丝点击