服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - IOS - iOS自定义collectionView实现毛玻璃效果

iOS自定义collectionView实现毛玻璃效果

2021-02-01 15:49iOS开发网 IOS

不知道大家发现没有苹果在iOS7.0之后,很多系统界面都使用了毛玻璃效果,增加了界面的美观性,所以这篇文章跟大家分享个iOS自定义collectionView实现毛玻璃效果的方法,有需要的可以参考借鉴,下面来一起看看。

先来看看效果图,由于录屏软件不给力,毛玻璃效果不明显,请见谅。

iOS自定义collectionView实现毛玻璃效果

步骤详解:

说下思路,很简单,首先自定义一个collectionview, 重写它的initwithframe:collectionviewlayout:方法,在这里面做配置,这里用的是axecollectionview.

与之对应的自定义一个collectionviewcell,在cell里配置操作:设置layer涂层,加载图片等操作,这里用的是axecollectionviewcell.

最后在需要展示的控制器里调用axecollectionview,给它传入一个自定义的流水布局和图片数组,大功告成.

示例代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// viewcontroller
@interface viewcontroller ()
 
@property (nonatomic, strong) axecollectionview *collectionview;
 
@end
 
@implementation viewcontroller
 
- (void)viewdidload {
  [super viewdidload];
 
  // 流水布局
  uicollectionviewflowlayout *flowlayout = [[uicollectionviewflowlayout alloc] init];
  flowlayout.minimumlinespacing = kitem_margin;
  flowlayout.minimuminteritemspacing = [uiscreen mainscreen].bounds.size.height;
  flowlayout.itemsize = cgsizemake([uiscreen mainscreen].bounds.size.width - kitem_margin, kitem_height);
  flowlayout.scrolldirection = uicollectionviewscrolldirectionhorizontal;
  flowlayout.sectioninset = uiedgeinsetsmake(0, kitem_margin / 2, 0, kitem_margin / 2);
 
  cgrect frame = self.view.bounds;
  _collectionview = [[axecollectionview alloc] initwithframe:frame collectionviewlayout:flowlayout];
 
  // 传入图片数组
  _collectionview.imgarr = @[
                @"0",
                @"1",
                @"2",
                @"3",
                @"4",
                @"5",
                @"6",
                @"7",
                ];
 
  [self.view addsubview:_collectionview];
}
 
// axecollectionview.h
@interface axecollectionview : uicollectionview
 
@property (nonatomic, strong) nsarray *imgarr;
 
@end
 
 
// axecollectionview.m
@interface axecollectionview () <uicollectionviewdelegate, uicollectionviewdatasource>
 
// 背景imgview
@property (nonatomic, strong) uiimageview *bgimgview;
 
@end
 
@implementation axecollectionview
 
static nsstring *const axecollectionviewcellid = @"axecollectionviewcell";
 
- (instancetype)initwithframe:(cgrect)frame collectionviewlayout:(uicollectionviewlayout *)layout
{
  if(self = [super initwithframe:frame collectionviewlayout:layout])
  {
    [self setup];
  }
  return self;
}
 
- (void)setup
{
  self.showsverticalscrollindicator = no;
  self.showshorizontalscrollindicator = no;
  self.pagingenabled = yes;
  self.datasource = self;
  self.delegate = self;
  [self registerclass:[axecollectionviewcell class] forcellwithreuseidentifier:axecollectionviewcellid];
 
  // collectionview背景view
  uiimageview *bgimgview = [[uiimageview alloc] initwithframe:self.bounds];
  self.backgroundview = bgimgview;
  self.bgimgview = bgimgview;
 
  // 毛玻璃效果 (ios8.0以后适用)
  uiblureffect *blureffect = [uiblureffect effectwithstyle:uiblureffectstylelight];
  uivisualeffectview *effectview = [[uivisualeffectview alloc] initwitheffect:blureffect];
  effectview.frame = self.bounds;
  [self.backgroundview addsubview:effectview];
}
 
#pragma mark - uicollectionviewdatasource
 
- (uicollectionviewcell *)collectionview:(uicollectionview *)collectionview cellforitematindexpath:(nsindexpath *)indexpath
{
  axecollectionviewcell *cell = [collectionview dequeuereusablecellwithreuseidentifier:axecollectionviewcellid forindexpath:indexpath];
  cell.img = self.imgarr[indexpath.row];
 
  // 设置毛玻璃图片
  self.bgimgview.image = [uiimage imagenamed:self.imgarr[indexpath.row]];
  return cell;
}
 
- (nsinteger)collectionview:(uicollectionview *)collectionview numberofitemsinsection:(nsinteger)section
{
  return self.imgarr.count;
}
 
#pragma mark - uicollectionviewdelegate
 
- (void)collectionview:(uicollectionview *)collectionview willdisplaycell:(uicollectionviewcell *)cell foritematindexpath:(nsindexpath *)indexpath
{
  axecollectionviewcell *mycell = (axecollectionviewcell *)cell;
  [uiview animatewithduration:0.5 animations:^{
    mycell.transform = cgaffinetransformscale(cgaffinetransformidentity, 1.0, 1.4);
  }];
}

补充一下

例子中我是用的uiblureffect做的毛玻璃效果,这个是ios8以后出现的,如果你要适配7的系统,那就要另做配置.

如果不用uiblureffect的话,下面这两种同样能做出模糊效果,只不过第一种性能较差,建议大家按需使用.

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// 返回滤镜处理后图片
- (uiimage *)coreblurimage:(uiimage *)image withblurnumber:(cgfloat)blur
{
  cicontext *context = [cicontext contextwithoptions:nil];
  ciimage *inputimage= [ciimage imagewithcgimage:image.cgimage];
 
  // 设置filter
  cifilter *filter = [cifilter filterwithname:@"cigaussianblur"];
  [filter setvalue:inputimage forkey:kciinputimagekey];
  [filter setvalue:@(blur) forkey: @"inputradius"];
 
  // 模糊图片
  ciimage *result=[filter valueforkey:kcioutputimagekey];
  cgimageref outimage=[context createcgimage:result fromrect:[result extent]];
  uiimage *blurimage=[uiimage imagewithcgimage:outimage];
  cgimagerelease(outimage);
  return blurimage;
}
 
// 返回高斯效果模糊图片
- (uiimage *)boxblurimage:(uiimage *)image withblurnumber:(cgfloat)blur
{
  if (blur < 0.f || blur > 1.f) {
    blur = 0.5f;
  }
  int boxsize = (int)(blur * 40);
  boxsize = boxsize - (boxsize % 2) + 1;
  cgimageref img = image.cgimage;
  vimage_buffer inbuffer, outbuffer;
  vimage_error error;
  void *pixelbuffer;
 
  // 从cgimage中获取数据
  cgdataproviderref inprovider = cgimagegetdataprovider(img);
  cfdataref inbitmapdata = cgdataprovidercopydata(inprovider);
 
  // 设置从cgimage获取对象的属性
  inbuffer.width = cgimagegetwidth(img);
  inbuffer.height = cgimagegetheight(img);
  inbuffer.rowbytes = cgimagegetbytesperrow(img);
  inbuffer.data = (void*)cfdatagetbyteptr(inbitmapdata);
  pixelbuffer = malloc(cgimagegetbytesperrow(img) * cgimagegetheight(img));
  if(pixelbuffer == null)
    nslog(@"no pixelbuffer");
  outbuffer.data = pixelbuffer;
  outbuffer.width = cgimagegetwidth(img);
  outbuffer.height = cgimagegetheight(img);
  outbuffer.rowbytes = cgimagegetbytesperrow(img);
  error = vimageboxconvolve_argb8888(&inbuffer, &outbuffer, null, 0, 0, boxsize, boxsize, null, kvimageedgeextend);
  if (error) {
    nslog(@"error from convolution %ld", error);
  }
  cgcolorspaceref colorspace = cgcolorspacecreatedevicergb();
  cgcontextref ctx = cgbitmapcontextcreate( outbuffer.data, outbuffer.width, outbuffer.height, 8, outbuffer.rowbytes, colorspace, kcgimagealphanoneskiplast);
  cgimageref imageref = cgbitmapcontextcreateimage (ctx);
  uiimage *returnimage = [uiimage imagewithcgimage:imageref];
 
  // clean up
  cgcolorspacerelease(colorspace);
  free(pixelbuffer);
  cfrelease(inbitmapdata);
  cgcolorspacerelease(colorspace);
  cgimagerelease(imageref);
  return returnimage;
}

总结

以上就是ios自定义collectionview实现毛玻璃效果的全部内容,希望能对各位ios开发者们有一定的帮助,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。

延伸 · 阅读

精彩推荐
  • IOS解析iOS开发中的FirstResponder第一响应对象

    解析iOS开发中的FirstResponder第一响应对象

    这篇文章主要介绍了解析iOS开发中的FirstResponder第一响应对象,包括View的FirstResponder的释放问题,需要的朋友可以参考下...

    一片枫叶4662020-12-25
  • IOS关于iOS自适应cell行高的那些事儿

    关于iOS自适应cell行高的那些事儿

    这篇文章主要给大家介绍了关于iOS自适应cell行高的那些事儿,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的...

    daisy6092021-05-17
  • IOSiOS布局渲染之UIView方法的调用时机详解

    iOS布局渲染之UIView方法的调用时机详解

    在你刚开始开发 iOS 应用时,最难避免或者是调试的就是和布局相关的问题,下面这篇文章主要给大家介绍了关于iOS布局渲染之UIView方法调用时机的相关资料...

    windtersharp7642021-05-04
  • IOSIOS开发之字典转字符串的实例详解

    IOS开发之字典转字符串的实例详解

    这篇文章主要介绍了IOS开发之字典转字符串的实例详解的相关资料,希望通过本文能帮助到大家,让大家掌握这样的方法,需要的朋友可以参考下...

    苦练内功5832021-04-01
  • IOSiOS通过逆向理解Block的内存模型

    iOS通过逆向理解Block的内存模型

    自从对 iOS 的逆向初窥门径后,我也经常通过它来分析一些比较大的应用,参考一下这些应用中某些功能的实现。这个探索的过程乐趣多多,不仅能满足自...

    Swiftyper12832021-03-03
  • IOSiOS 雷达效果实例详解

    iOS 雷达效果实例详解

    这篇文章主要介绍了iOS 雷达效果实例详解的相关资料,需要的朋友可以参考下...

    SimpleWorld11022021-01-28
  • IOSiOS中tableview 两级cell的展开与收回的示例代码

    iOS中tableview 两级cell的展开与收回的示例代码

    本篇文章主要介绍了iOS中tableview 两级cell的展开与收回的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    J_Kang3862021-04-22
  • IOSIOS 屏幕适配方案实现缩放window的示例代码

    IOS 屏幕适配方案实现缩放window的示例代码

    这篇文章主要介绍了IOS 屏幕适配方案实现缩放window的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要...

    xiari5772021-06-01