Make wool glass effect, make wool glass
// Add an image
UIImageView * imageview = [[UIImageView alloc] init];
Imageview. frame = CGRectMake (10,100,300,300 );
Imageview. contentMode = UIViewContentModeScaleAspectFit;
Imageview. userInteractionEnabled = YES;
Imageview. image = [UIImage imageNamed: @ "3.jpg"];
[Self. view addSubview: imageview];
// Fuzzy effect code
UIBlurEffect * errect = [UIBlurEffect effectWithStyle: UIBlurEffectStyleExtraLight];
Uivisualiztview * ectView = [[uivisualiztview alloc] initWithEffect: errect];
ECS view. alpha = 0.6;
EctView. frame = CGRectMake (0, 0, imageview. frame. size. width/2,300 );
[Imageview addSubview: ectView];
UIButton * btn = [UIButton buttonWithType: UIButtonTypeSystem];
Btn. frame = CGRectMake (10,50, 100, 40 );
[Btn setTitle: @ "btn" forState: UIControlStateNormal];
[EctView. contentView addSubview: btn];
Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.