iOS实现毛玻璃效果(无需要第三方)

本文实例分享两种iOS毛玻璃效果设置的方法,不需要任何第三方,先看效果

原图:

iOS实现毛玻璃效果(无需要第三方)

方法一(iOS8系统方法):

iOS实现毛玻璃效果(无需要第三方)

方法二:

iOS实现毛玻璃效果(无需要第三方)

下面是示例代码

#import "ViewController.h" 

@interface ViewController ()
{
 UIImageView *_imageView;
}
@end 

@implementation ViewController 

- (void)viewDidLoad {
 [super viewDidLoad];
 _imageView = [[UIImageView alloc]initWithFrame:self.view.bounds];
 _imageView.image = [UIImage imageNamed:@"1.jpg"];
 [self.view addSubview:_imageView]; 

 //方法一:系统方法,iOS8及以上可用
 if (!UIAccessibilityIsReduceTransparencyEnabled()) {
 UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleDark];
 UIVisualEffectView *blurEffectView = [[UIVisualEffectView alloc]initWithEffect:blurEffect];
 blurEffectView.frame = _imageView.bounds;
 [_imageView addSubview:blurEffectView];
 } 

 //方法二:Core Image
 UIImageView *blurImageView = [[UIImageView alloc]initWithFrame:_imageView.bounds];
 blurImageView.image = [self blur:[UIImage imageNamed:@"1.jpg"]];
 [_imageView addSubview:blurImageView];
} 

//生成一张毛玻璃图片
- (UIImage*)blur:(UIImage*)theImage
{
 CIContext *context = [CIContext contextWithOptions:nil];
 CIImage *inputImage = [CIImage imageWithCGImage:theImage.CGImage]; 

 CIFilter *filter = [CIFilter filterWithName:@"CIGaussianBlur"];
 [filter setValue:inputImage forKey:kCIInputImageKey];
 [filter setValue:[NSNumber numberWithFloat:15.0f] forKey:@"inputRadius"];
 CIImage *result = [filter valueForKey:kCIoUtputImageKey]; 

 CGImageRef cgImage = [context createCGImage:result fromRect:[inputImage extent]]; 

 UIImage *returnImage = [UIImage imageWithCGImage:cgImage];
 CGImageRelease(cgImage);
 return returnImage;
} 

- (void)didReceiveMemoryWarning {
 [super didReceiveMemoryWarning];
 // Dispose of any resources that can be recreated.
} 

@end 

具体效果和参数自行研究吧!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

您可能感兴趣的文章:

相关文章

背景 前端时间产品经理决定使用百度统计,使得 工程B 中原统计sdk-友盟统计,需要被去除。之前尝试去除...
结论: alloc负责分配内存和创建对象对应的isa指针; init只是返回alloc生成的对象。 所以alloc后,多次...
更新 如果UI愿意把启动图切割成n份,按一定约束在launchscreen.storyboard中进行排版,启动图效果会更好...
最近在看一本书《Effective OC 2.0》,今天看到有个tip是OC适中循环各自优劣性,作者最终推荐此块循环。...
// // ViewController.m // paintCodeTestOC //gif // Created by LongMa on 2019/7/25. // #import &a...
背景介绍 一般情况下,出于省电、权限、合理性等因素考虑,给人的感觉是很多奇怪的需求安卓可以实现,但...