蘋果公司在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一樣。
新聞熱點
疑難解答