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

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

服务器之家 - 编程语言 - IOS - iOS实现折叠单元格

iOS实现折叠单元格

2021-06-04 16:031Lucky IOS

这篇文章主要为大家详细介绍了iOS实现折叠单元格,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了ios实现折叠单元格的具体代码,供大家参考,具体内容如下

思路

点击按钮或cell单元格来进行展开收缩, 同时使用一个bool值记录单元格展开收缩状态。根据bool值对tableview的高度和button的image进行实时变更。

注意点:

在执行- (void)tableview:(uitableview *)tableview didselectrowatindexpath:(nsindexpath *)indexpath( 点击当前单元格)方法时,收缩单元格,显示当前点击的单元格的内容。这一步骤的实现是对存储单元格内容的可变数组进行更改。

代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
//viewcontroller.h 中
 
#import <uikit/uikit.h>
 
@interface viewcontroller : uiviewcontroller
 
@property uitableview *tableview;
@property uibutton *button;  
@property nsmutablearray *imageviewarr;
@property nsmutablearray *labelarr; 
@property bool select;    //记录单元格展开收缩状态
 
@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
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
121
122
123
124
125
126
127
128
129
130
//viewcontroller.m 中
 
#import "viewcontroller.h"
#import "viewtableviewcell.h"
#import "masonry.h"
 
@interface viewcontroller () <uitableviewdelegate, uitableviewdatasource>
 
@end
 
@implementation viewcontroller
 
- (void)viewdidload {
 [super viewdidload];
 
 self.view.backgroundcolor = [uicolor colorwithwhite:0.92 alpha:1];
 
 _imageviewarr = [[nsmutablearray alloc] initwithobjects:@"1", @"2", @"3", @"4", @"5", nil];
 _labelarr = [[nsmutablearray alloc] initwithobjects:@"发起群聊", @"添加朋友", @"扫一扫", @"收付款", @"帮助与反馈", nil];
 
 _tableview = [[uitableview alloc] init];
 [self.view addsubview:_tableview];
 
 _tableview.frame = cgrectmake(100, 100, 130, 35);
 //以下使用masonry对tableview进行约束, 约束不是很规范 可忽略
// [_tableview mas_makeconstraints:^(masconstraintmaker *make) {
//  make.height.mas_offset(self.view.frame.size.height * 0.0485);
//  make.width.mas_offset(self.view.frame.size.width * 0.335);
//  make.left.equalto(self.view.mas_left).offset(self.view.frame.size.width * 0.6);
//  make.top.equalto(self.view.mas_top).offset(self.view.frame.size.height * 0.046);
//
// }];
 
 _tableview.delegate = self;
 _tableview.datasource = self;
 [_tableview registerclass:[viewtableviewcell class] forcellreuseidentifier:@"cell"];
 
 _button = [uibutton buttonwithtype:uibuttontypecustom];
 [self.view addsubview:_button];
 
 [_button mas_makeconstraints:^(masconstraintmaker *make) {
  make.left.equalto(_tableview.mas_right).offset(-28);
  make.top.equalto(_tableview.mas_top).offset(4);
  make.height.mas_offset(self.view.frame.size.height * 0.0495 * 0.68);
  make.width.mas_offset(self.view.frame.size.width * 0.335 * 0.22);
  
 }];
 [_button setimage:[uiimage imagenamed:@"shou"] forstate:uicontrolstatenormal];
 [_button addtarget:self action:@selector(press) forcontrolevents:uicontroleventtouchupinside];
 //默认单元格为收缩 select为0
 _select = 0;
}
 
- (nsinteger)numberofsectionsintableview:(uitableview *)tableview {
 return 1;
}
 
- (nsinteger)tableview:(uitableview *)tableview numberofrowsinsection:(nsinteger)section {
 //根据select的值来判断收缩展开状态,返回相应的行数
 if(_select == 0) {
  return 1;
 } else {
  return 5;
 }
}
 
- (cgfloat)tableview:(uitableview *)tableview heightforrowatindexpath:(nsindexpath *)indexpath {
 return 40;
}
 
- (uitableviewcell *)tableview:(uitableview *)tableview cellforrowatindexpath:(nsindexpath *)indexpath {
 
 viewtableviewcell *cell = [tableview dequeuereusablecellwithidentifier:@"cell" forindexpath:indexpath];
 cell.iimageview.image = [uiimage imagenamed:_imageviewarr[indexpath.row]];
 cell.label.text = [nsstring stringwithstring:_labelarr[indexpath.row]];
 return cell;
}
 
//点击当前单元格
- (void)tableview:(uitableview *)tableview didselectrowatindexpath:(nsindexpath *)indexpath {
 
 //记录当前单元格的imageview 和 label的内容
 nsstring *imageviewstr = [nsstring stringwithstring:_imageviewarr[indexpath.row]];
 nsstring *labelstr = [nsstring stringwithstring:_labelarr[indexpath.row]];
 
 //将当前单元格的内容插入可变数组,作为第一个元素
 [_imageviewarr insertobject:imageviewstr atindex:0];
 [_labelarr insertobject:labelstr atindex:0];
 
 //同时删除可变数组中当前单元格的原本所在位置
 [_imageviewarr removeobjectatindex:indexpath.row + 1];
 [_labelarr removeobjectatindex:indexpath.row + 1];
 
 //更新tableview
 [_tableview reloaddata];
 
 //调用press方法, 变更tableview的高度 和 button的image
 [self press];
 
}
 
 
- (void)press {
 
 //通过判断select的值, 判断单元格的展开与收缩,更改tableview的高度 和 button的image
 if (_select == 0) {
  _select = 1;
  
  _tableview.frame = cgrectmake(100, 100, 130, 200);
  
  //以下使用masonry对tableview进行更新约束 (以下代码为更新tableview的高度)
//  [_tableview mas_updateconstraints:^(masconstraintmaker *make) {
//   make.height.mas_offset(200);
//  }];
 
  [_button setimage:[uiimage imagenamed:@"kai"] forstate:uicontrolstatenormal];
  
 } else {
  _select = 0;
  _tableview.frame = cgrectmake(100, 100, 130, 35);
//  [_tableview mas_updateconstraints:^(masconstraintmaker *make) {
//   make.height.mas_offset(self.view.frame.size.height * 0.0485);
//  }];
 
  [_button setimage:[uiimage imagenamed:@"shou"] forstate:uicontrolstatenormal];
 }
 [_tableview reloaddata];
}
 
@end
?
1
2
3
4
5
6
7
8
9
10
11
12
// viewtableviewcell.h 中
 
#import <uikit/uikit.h>
 
ns_assume_nonnull_begin
 
@interface viewtableviewcell : uitableviewcell
 
@property uiimageview *iimageview;
@property uilabel *label;
 
@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
//viewtableviewcell.m中
 
#import "viewtableviewcell.h"
 
@implementation viewtableviewcell
 
- (instancetype)initwithstyle:(uitableviewcellstyle)style reuseidentifier:(nsstring *)reuseidentifier {
 self = [super initwithstyle:style reuseidentifier:reuseidentifier];
 
 _iimageview = [[uiimageview alloc] init];
 [self.contentview addsubview:_iimageview];
 
 _label = [[uilabel alloc] init];
 [self.contentview addsubview:_label];
 return self;
}
 
- (void)layoutsubviews {
 [super layoutsubviews];
 _iimageview.frame = cgrectmake(5, 5, 25, 25);
 _label.frame = cgrectmake(37, 5, 80, 25);
 _label.font = [uifont systemfontofsize:15];
}
 
@end

效果图如下

初始状态

iOS实现折叠单元格

点击cell或点击按钮,显示如下:

iOS实现折叠单元格

点击任意cell, 例如点击扫一扫,单元格收回,如图

iOS实现折叠单元格

再次展开单元格, cell的内容如下:

iOS实现折叠单元格

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

原文链接:https://blog.csdn.net/qq_45836906/article/details/108544371

延伸 · 阅读

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

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

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

    一片枫叶4662020-12-25
  • IOSIOS开发之字典转字符串的实例详解

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

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

    苦练内功5832021-04-01
  • IOSIOS 屏幕适配方案实现缩放window的示例代码

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

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

    xiari5772021-06-01
  • IOSiOS通过逆向理解Block的内存模型

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

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

    Swiftyper12832021-03-03
  • IOS关于iOS自适应cell行高的那些事儿

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

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

    daisy6092021-05-17
  • IOSiOS 雷达效果实例详解

    iOS 雷达效果实例详解

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

    SimpleWorld11022021-01-28
  • IOSiOS布局渲染之UIView方法的调用时机详解

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

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

    windtersharp7642021-05-04
  • IOSiOS中tableview 两级cell的展开与收回的示例代码

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

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

    J_Kang3862021-04-22