资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

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

关于“iOS如何实现毛玻璃效果”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。


网页名称:iOS如何实现毛玻璃效果
分享路径:http://cdkjz.cn/article/gdghph.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

业务热线:400-028-6601 / 大客户专线   成都:13518219792   座机:028-86922220