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

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

服务器之家 - 编程语言 - IOS - IOS 自定义UICollectionView的头视图或者尾视图UICollectionReusableView

IOS 自定义UICollectionView的头视图或者尾视图UICollectionReusableView

2021-02-28 14:43Jack__Long IOS

这篇文章主要介绍了IOS 自定义UICollectionView的头视图或者尾视图UICollectionReusableView的相关资料,需要的朋友可以参考下

ios 自定义uicollectionview的头视图或者尾视图uicollectionreusableview

其实看标题就知道是需要继承于uicollectionreusableview,实现一个满足自己需求的视图.那么如何操作了,看下面代码:

?
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
115
116
117
118
119
120
viewcontroller.m文件中
 
#import "viewcontroller.h"
#import "lshcontrol.h"
#import "shcollectionreusableview.h"
#import "shcollectionviewcell.h"
 
#define shcollectionviewcellidetifiler  @"collectionviewcell"
#define shcollectionreusableviewheader  @"collectionheader"
#define shcollectionreusableviewfooter  @"collectionfooter"
 
@interface viewcontroller ()<uicollectionviewdelegate,uicollectionviewdatasource>{
  nsarray *recipeimages;
  nsarray *heardertitlearray;
}
 
 
@property(nonatomic,strong) uicollectionview *rightcollectionview;
 
@end
 
@implementation viewcontroller
 
- (void)viewdidload {
 
  [super viewdidload];
 
  nsarray *maindishimages = [nsarray arraywithobjects:@"egg_benedict.jpg", @"full_breakfast.jpg", @"ham_and_cheese_panini.jpg", @"ham_and_egg_sandwich.jpg", @"hamburger.jpg", @"instant_noodle_with_egg.jpg", @"japanese_noodle_with_pork.jpg", @"mushroom_risotto.jpg", @"noodle_with_bbq_pork.jpg", @"thai_shrimp_cake.jpg", @"vegetable_curry.jpg", nil];
  nsarray *drinkdessertimages = [nsarray arraywithobjects:@"angry_birds_cake.jpg", @"creme_brelee.jpg", @"green_tea.jpg", @"starbucks_coffee.jpg", @"white_chocolate_donut.jpg", nil];
  recipeimages = [nsarray arraywithobjects:maindishimages, drinkdessertimages, nil];
 
  heardertitlearray=@[@"分区1",@"分区2"];
 
  [self createcollectionview];
 
}
 
-(void)createcollectionview{
 
  uicollectionviewflowlayout *flowlayout=[[uicollectionviewflowlayout alloc] init];
  flowlayout.minimuminteritemspacing=0.f;//item左右间隔
  flowlayout.minimumlinespacing=5.f;//item上下间隔
  flowlayout.sectioninset=uiedgeinsetsmake(5,15,5, 15);//item对象上下左右的距离
  flowlayout.itemsize=cgsizemake(80, 80);//每一个 item 对象大小
  flowlayout.scrolldirection=uicollectionviewscrolldirectionvertical;//设置滚动方向,默认垂直方向.
  flowlayout.headerreferencesize=cgsizemake(self.view.frame.size.width, 30);//头视图的大小
  flowlayout.footerreferencesize=cgsizemake(self.view.frame.size.width, 30);//尾视图大小
 
  self.rightcollectionview= [lshcontrol createcollectionviewfromframe:self.view.frame collectionviewlayout:flowlayout datasource:self delegate:self backgroudcolor:[uicolor whitecolor]];
 
  //自定义重用视图
  [self.rightcollectionview registernib:[uinib nibwithnibname:@"shcollectionviewcell" bundle:nil] forcellwithreuseidentifier:shcollectionviewcellidetifiler];
 
  [self.rightcollectionview registerclass:[shcollectionreusableview class] forsupplementaryviewofkind:uicollectionelementkindsectionheader withreuseidentifier:shcollectionreusableviewheader];
 
  //使用原有重用视图
  [self.rightcollectionview registerclass:[uicollectionreusableview class] forsupplementaryviewofkind:uicollectionelementkindsectionfooter withreuseidentifier:shcollectionreusableviewfooter ];
 
  [self.view addsubview:self.rightcollectionview];
 
}
 
- (nsinteger)numberofsectionsincollectionview:(uicollectionview *)collectionview
{
  return [recipeimages count];
}
 
- (nsinteger)collectionview:(uicollectionview *)collectionview numberofitemsinsection:(nsinteger)section{
  return [[recipeimages objectatindex:section] count];
}
 
- (uicollectionreusableview *)collectionview:(uicollectionview *)collectionview viewforsupplementaryelementofkind:(nsstring *)kind atindexpath:(nsindexpath *)indexpath
{
  uicollectionreusableview *reusableview = nil;
 
  if (kind == uicollectionelementkindsectionheader) {
 
    shcollectionreusableview *headerview = [collectionview dequeuereusablesupplementaryviewofkind:uicollectionelementkindsectionheader withreuseidentifier:shcollectionreusableviewheader forindexpath:indexpath];
    /**
     *
     * 注意:虽然这里没有看到明显的initwithframe方法,但是在获取重用视图的时候,系统会自动调用initwithframe方法的.所以在initwithframe里面进行初始化操作,是没有问题的!
     */
 
    [headerview getshcollectionreusableviewheardertitle:heardertitlearray[indexpath.section]];
 
    reusableview = headerview;
  }
 
  if (kind == uicollectionelementkindsectionfooter) {
 
    uicollectionreusableview *footerview = [collectionview dequeuereusablesupplementaryviewofkind:uicollectionelementkindsectionfooter withreuseidentifier:shcollectionreusableviewfooter forindexpath:indexpath];
    /**
     *  如果头尾视图没什么很多内容,直接创建对应控件进行添加即可,无需自定义.
     */
    footerview.backgroundcolor=[uicolor redcolor];
    reusableview = footerview;
  }
 
  return reusableview;
}
 
 
- (uicollectionviewcell *)collectionview:(uicollectionview *)collectionview cellforitematindexpath:(nsindexpath *)indexpath{
 
  /**
   *
   *  这里自定义cell,使用xib进行布局.对于如何使用xib创建视图,不明白的,可以看我之前写的一篇文章.
   */
 
 
  shcollectionviewcell *cell = (shcollectionviewcell *)[collectionview dequeuereusablecellwithreuseidentifier:shcollectionviewcellidetifiler forindexpath:indexpath];
 
  uiimageview *recipeimageview = (uiimageview *)[cell viewwithtag:100];
  recipeimageview.image = [uiimage imagenamed:[recipeimages[indexpath.section] objectatindex:indexpath.row]];
  cell.backgroundview = [[uiimageview alloc] initwithimage:[uiimage imagenamed:@"photo-frame-2.png"]];
 
  return cell;
}
 
@end

自定义uicollectionviewcell,使用 xib进行布局

?
1
2
3
4
5
6
7
8
9
10
11
12
13
#import <uikit/uikit.h>
 
@interface shcollectionviewcell : uicollectionviewcell
 
@property (weak, nonatomic) iboutlet uiimageview *recipeimageview;
 
@end
 
#import "shcollectionviewcell.h"
@implementation shcollectionviewcell
 
 
@end

自定义uicollectionreusableview,手写代码进行布局

?
1
2
3
4
5
6
7
8
9
10
11
#import <uikit/uikit.h>
 
@interface shcollectionreusableview : uicollectionreusableview
 
/**
 *  声明相应的数据模型属性,进行赋值操作,获取头视图或尾视图需要的数据.或者提供一个方法获取需要的数据.
 */
 
-(void)getshcollectionreusableviewheardertitle:(nsstring *)title;
 
@end
?
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
#import "shcollectionreusableview.h"
#import "lshcontrol.h"
 
@interface shcollectionreusableview (){
 
  uilabel *titlelabel;
}
 
@end
 
@implementation shcollectionreusableview
 
 
-(id)initwithframe:(cgrect)frame{
 
  self=[super initwithframe:frame];
 
  if (self) {
 
    self.backgroundcolor=[uicolor greencolor];
    [self createbasicview];
  }
  return self;
 
}
 
/**
 *  进行基本布局操作,根据需求进行.
 */
-(void)createbasicview{
 
 
 titlelabel=[lshcontrol createlabelwithframe:cgrectmake(5, 0,self.frame.size.width-50, self.frame.size.height) font:[uifont systemfontofsize:14.0] text:@"" color:[uicolor graycolor]];
 [self addsubview:titlelabel];
 
 
}
 
 
/**
 *  设置相应的数据
 *
 *  @param title
 */
-(void)getshcollectionreusableviewheardertitle:(nsstring *)title{
 
  titlelabel.text=title;
 
}
 
@end

效果如下图:

IOS 自定义UICollectionView的头视图或者尾视图UICollectionReusableViewIOS 自定义UICollectionView的头视图或者尾视图UICollectionReusableView

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

延伸 · 阅读

精彩推荐
  • IOSiOS布局渲染之UIView方法的调用时机详解

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

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

    windtersharp7642021-05-04
  • 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
  • IOSIOS开发之字典转字符串的实例详解

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

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

    苦练内功5832021-04-01
  • IOS关于iOS自适应cell行高的那些事儿

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

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

    daisy6092021-05-17
  • IOSiOS通过逆向理解Block的内存模型

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

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

    Swiftyper12832021-03-03
  • IOS解析iOS开发中的FirstResponder第一响应对象

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

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

    一片枫叶4662020-12-25