资讯

精准传达 • 有效沟通

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

iOS如何实现毛玻璃效果-创新互联

这篇文章将为大家详细讲解有关iOS如何实现毛玻璃效果,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

创新互联公司主要从事成都网站设计、做网站、网页设计、企业做网站、公司建网站等业务。立足成都服务菏泽,10年网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:18982081108

原图:

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

另外有需要云服务器可以了解下创新互联建站www.cdcxhl.com,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。


网站栏目:iOS如何实现毛玻璃效果-创新互联
本文链接:http://cdkjz.cn/article/pcdgg.html
多年建站经验

多一份参考,总有益处

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

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

大客户专线   成都:13518219792   座机:028-86922220