【转】 iOS如何实现表格的折叠效果?
原文 : http://blog.csdn.net/youcanping2008/article/details/9202167
一、实现原理:就是在点击表格组头视图的时候,如果该表格视图的组展开了,就把改组的行设置为0,如果该组隐藏了,就显示该组的所有行。
效果如下:
二、实现步骤
1、定义一个数据模型用于封装数据
- #import <Foundation/Foundation.h>
- @interface MyData : NSObject
- {
- NSMutableArray *_array;// 每组的数据
- BOOL _isShow;// 组的状态,yes显示组,no不显示组
- NSString *_name;// 组名
- }
- @property (nonatomic,retain) NSMutableArray *array;
- @property (nonatomic,copy) NSString * name;
- @property (nonatomic,assign) BOOL isShow;
- @end
2、添加数据源
- - (void)viewDidLoad
- {
- [super viewDidLoad];
- // Do any additional setup after loading the view.
- // 全局的数据源
- dataArray = [[NSMutableArray alloc] init];
- // 添加数据
- for (int i='A'; i<='Z'; i++) {
- MyData *myData = [[MyData alloc] init];
- myData.name = [NSString stringWithFormat:@"%c",i];
- for (int j=; j<; j++) {
- [myData.array addObject:[NSString stringWithFormat:@"%c-%d",i,j]];
- }
- [dataArray addObject:myData];
- }
- myTableView = [[UITableView alloc] initWithFrame:CGRectMake(, , , -) style:UITableViewStylePlain];
- myTableView.dataSource = self;
- myTableView.delegate = self;
- myTableView.rowHeight = ;
- [self.view addSubview:myTableView];
- }
- - (void)viewDidLoad
3.实现表格的代理方法
- // 组数
- - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView
- {
- return [dataArray count];
- }
- // 根据状态来判断是否显示该组,隐藏组把组的行数设置为0即可
- - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
- {
- MyData *data = [dataArray objectAtIndex:section];
- if ([data isShow]) {
- return [[data array] count];
- }else{
- return ;
- }
- }
- // 添加每行显示的内容
- - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
- {
- static NSString *cellName = @"Cell";
- UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellName ];
- if (!cell) {
- cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellName] autorelease];
- }
- MyData *data = [dataArray objectAtIndex:indexPath.section];
- NSString *str = [[data array] objectAtIndex:indexPath.row];
- cell.textLabel.text = str;
- return cell;
- }
- // 组数
4.自定义组的头标题视图,添加点击事件
- // 定义头标题的视图,添加点击事件
- - (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
- {
- MyData *data = [dataArray objectAtIndex:section];
- UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
- btn.frame = CGRectMake(, , , );
- [btn setTitle:data.name forState:UIControlStateNormal];
- btn.tag = section;
- [btn addTarget:self action:@selector(btnClick:) forControlEvents:UIControlEventTouchUpInside];
- if (section%) {
- btn.backgroundColor = [UIColor darkGrayColor];
- }else{
- btn.backgroundColor = [UIColor lightGrayColor];
- }
- return btn;
- }
- - (void) btnClick:(UIButton *)btn
- {
- MyData *data = [dataArray objectAtIndex:btn.tag];
- // 改变组的显示状态
- if ([data isShow]) {
- [data setIsShow:NO];
- }else{
- [data setIsShow:YES];
- }
- // 刷新点击的组标题,动画使用卡片
- [myTableView reloadSections:[NSIndexSet indexSetWithIndex:btn.tag] withRowAnimation:UITableViewRowAnimationFade];
- }
- // 定义头标题的视图,添加点击事件
【转】 iOS如何实现表格的折叠效果?的更多相关文章
- iOS图片折叠效果:Layer的contentsRect属性和渐变层
http://www.cocoachina.com/ios/20150722/12622.html 作者:@吖了个峥 授权本站转载. 前言 此次文章,讲述的是Layer的一个属性contentsRec ...
- jQuery treetable【表格多重折叠树功能及拖放表格子元素重新排列】
今天有个表格需求做到多重折叠子元素功能,仔细想了下实现原理, 1.在html中,把父子节点的关系写在自定义属性,但对于节点是否有孩子(hasChild),是否是最后一个节点(isLastOne),是否 ...
- 创意设计展示:折叠效果在移动 App 中的应用
在今天在移动 App 界面设计中,你可以看到不同创意类型的视觉效果.特别是在 Dribbble 上面,有有很多应用程序的 UI 概念设计,让你惊叹.当然,他们大多只是作为一个概念设计,可能永远也不会成 ...
- css3折叠效果
在开发过程中,经常会遇到一些交互效果,今天所联系的便是一个类似折纸的折叠效果,查看效果. 说到折纸,我们先看下图 这是我第一时间想到的大体思路,如果能让这6个面连续的变化角度到0不就可以了吗,运用cs ...
- jQuery文本段落展开和折叠效果
<!DOCTYPE html> <head> <meta http-equiv="Content-Type" content="text/h ...
- jq菜单折叠效果
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8" ...
- BootStrap入门教程 (四) :JQuery类库插件(模态窗口,滚动监控,标签效果,提示效果,“泡芙”效果,警告区域,折叠效果,旋转木马,输入提示)
上讲回顾:Bootstrap组件丰富同时具有良好可扩展性,能够很好地应用在生产环境.这些组件包括按钮(Button),导航(Navigation),缩略图( thumbnails),提醒(Alert) ...
- 实现类似QQ的折叠效果
// 主要核心是点击自定义header来展开和收起每一组里面的cell,模型里面应该有isShow此属性来记录开展还是收起. // ViewController.m// 实现类似QQ的折叠效果/ ...
- Swift 2.0 封装图片折叠效果
文/猫爪(简书作者)原文链接:http://www.jianshu.com/p/688c491580e3著作权归作者所有,转载请联系作者获得授权,并标注“简书作者”. 用Swift封装图片折叠效果 b ...
随机推荐
- 【Java】Java Servlet 技术简介
Java 开发人员兼培训师 Roy Miller 将我们现有的 servlet 介绍资料修改成了这篇易于学习的实用教程.Roy 将介绍并解释 servlet 是什么,它们是如何工作的,如何使用它们来创 ...
- The Child and Toy
Codeforces Round #250 (Div. 2) C:http://codeforces.com/problemset/problem/437/C 题意:给以一个无向图,每个点都有一点的权 ...
- tomcat服务器报Server at localhost was unable to start within 45 seconds的问题
今天在同一个tomcat服务器下部署了2个不同的应用程序,然后启动时报错:Server at localhost was unable to start within 45 seconds.If th ...
- Mysql分页查询
取前5条数据 select * from table_name limit 0,5 或 select * from table_name limit 5 取第11条到第15条数据,共5条 select ...
- 数学(错排):BZOJ 4517: [Sdoi2016]排列计数
4517: [Sdoi2016]排列计数 Time Limit: 60 Sec Memory Limit: 128 MBSubmit: 693 Solved: 434[Submit][Status ...
- ZOJ 3675 Trim the Nails
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=4918 DP+状态压缩. http://www.cnblogs.com/dgsr ...
- HDOJ(HDU) 2201 熊猫阿波的故事(概率问题)
Problem Description 凡看过功夫熊猫这部电影的人都会对影片中那只憨憨的熊猫阿波留下相当深的印象,胖胖的熊猫阿波自从打败了凶狠强悍的雪豹泰龙以后,在和平谷的地位是越来越高,成为谷中第一 ...
- HDOJ(HDU) 2135 Rolling table
Problem Description After the 32nd ACM/ICPC regional contest, Wiskey is beginning to prepare for CET ...
- Codeforces Round #260 (Div. 1) --B. A Lot of Games (Trie)
B. A Lot of Games Andrew, Fedor and Alex are inventive guys. Now they invent the game with strings f ...
- 【转】Linux下查看所有用户及用户组
groups 查看当前登录用户的组内成员groups gliethttp 查看gliethttp用户所在的组,以及组内成员whoami 查看当前登录用户名/etc/group文件包含所有组/etc/s ...