标签:logs effect sharp bsp visual har imageview csharp view
//设置毛玻璃效果
+(void)blurEffrct:(UIView *)view{
UIBlurEffect* effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
UIVisualEffectView* effectView = [[UIVisualEffectView alloc] initWithEffect:effect];
effectView.frame =view.bounds;
[view addSubview:effectView];
}
[Healp blurEffrct:bgImageVIew];//设置毛玻璃效果
标签:logs effect sharp bsp visual har imageview csharp view
原文地址:http://www.cnblogs.com/Lrx-lizi/p/7435863.html