原文 :  http://blog.csdn.net/youcanping2008/article/details/9202167

一、实现原理:就是在点击表格组头视图的时候,如果该表格视图的组展开了,就把改组的行设置为0,如果该组隐藏了,就显示该组的所有行。

效果如下:

二、实现步骤

1、定义一个数据模型用于封装数据

    1. #import <Foundation/Foundation.h>
    2.  
    3. @interface MyData : NSObject
    4. {
    5. NSMutableArray *_array;// 每组的数据
    6. BOOL _isShow;// 组的状态,yes显示组,no不显示组
    7. NSString *_name;// 组名
    8. }
    9. @property (nonatomic,retain) NSMutableArray *array;
    10. @property (nonatomic,copy) NSString * name;
    11. @property (nonatomic,assign) BOOL isShow;
    12. @end

2、添加数据源

    1. - (void)viewDidLoad
    2. {
    3. [super viewDidLoad];
    4. // Do any additional setup after loading the view.
    5. // 全局的数据源
    6. dataArray = [[NSMutableArray alloc] init];
    7. // 添加数据
    8. for (int i='A'; i<='Z'; i++) {
    9. MyData *myData = [[MyData alloc] init];
    10. myData.name = [NSString stringWithFormat:@"%c",i];
    11. for (int j=; j<; j++) {
    12. [myData.array addObject:[NSString stringWithFormat:@"%c-%d",i,j]];
    13. }
    14. [dataArray addObject:myData];
    15. }
    16. myTableView = [[UITableView alloc] initWithFrame:CGRectMake(, , , -) style:UITableViewStylePlain];
    17. myTableView.dataSource = self;
    18. myTableView.delegate = self;
    19. myTableView.rowHeight = ;
    20. [self.view addSubview:myTableView];
    21. }

3.实现表格的代理方法

    1. // 组数
    2. - (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView
    3. {
    4. return [dataArray count];
    5. }
    6. // 根据状态来判断是否显示该组,隐藏组把组的行数设置为0即可
    7. - (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
    8. {
    9. MyData *data = [dataArray objectAtIndex:section];
    10. if ([data isShow]) {
    11. return [[data array] count];
    12. }else{
    13. return ;
    14. }
    15. }
    16. // 添加每行显示的内容
    17. - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    18. {
    19. static NSString *cellName = @"Cell";
    20. UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellName ];
    21. if (!cell) {
    22. cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellName] autorelease];
    23. }
    24. MyData *data = [dataArray objectAtIndex:indexPath.section];
    25. NSString *str = [[data array] objectAtIndex:indexPath.row];
    26. cell.textLabel.text = str;
    27. return cell;
    28. }

4.自定义组的头标题视图,添加点击事件

      1. // 定义头标题的视图,添加点击事件
      2. - (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
      3. {
      4. MyData *data = [dataArray objectAtIndex:section];
      5.  
      6. UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
      7. btn.frame = CGRectMake(, , , );
      8. [btn setTitle:data.name forState:UIControlStateNormal];
      9. btn.tag = section;
      10. [btn addTarget:self action:@selector(btnClick:) forControlEvents:UIControlEventTouchUpInside];
      11. if (section%) {
      12. btn.backgroundColor = [UIColor darkGrayColor];
      13. }else{
      14. btn.backgroundColor = [UIColor lightGrayColor];
      15. }
      16. return btn;
      17. }
      18. - (void) btnClick:(UIButton *)btn
      19. {
      20. MyData *data = [dataArray objectAtIndex:btn.tag];
      21. // 改变组的显示状态
      22. if ([data isShow]) {
      23. [data setIsShow:NO];
      24. }else{
      25. [data setIsShow:YES];
      26. }
      27. // 刷新点击的组标题,动画使用卡片
      28. [myTableView reloadSections:[NSIndexSet indexSetWithIndex:btn.tag] withRowAnimation:UITableViewRowAnimationFade];
      29. }

【转】 iOS如何实现表格的折叠效果?的更多相关文章

  1. iOS图片折叠效果:Layer的contentsRect属性和渐变层

    http://www.cocoachina.com/ios/20150722/12622.html 作者:@吖了个峥 授权本站转载. 前言 此次文章,讲述的是Layer的一个属性contentsRec ...

  2. jQuery treetable【表格多重折叠树功能及拖放表格子元素重新排列】

    今天有个表格需求做到多重折叠子元素功能,仔细想了下实现原理, 1.在html中,把父子节点的关系写在自定义属性,但对于节点是否有孩子(hasChild),是否是最后一个节点(isLastOne),是否 ...

  3. 创意设计展示:折叠效果在移动 App 中的应用

    在今天在移动 App 界面设计中,你可以看到不同创意类型的视觉效果.特别是在 Dribbble 上面,有有很多应用程序的 UI 概念设计,让你惊叹.当然,他们大多只是作为一个概念设计,可能永远也不会成 ...

  4. css3折叠效果

    在开发过程中,经常会遇到一些交互效果,今天所联系的便是一个类似折纸的折叠效果,查看效果. 说到折纸,我们先看下图 这是我第一时间想到的大体思路,如果能让这6个面连续的变化角度到0不就可以了吗,运用cs ...

  5. jQuery文本段落展开和折叠效果

    <!DOCTYPE html> <head> <meta http-equiv="Content-Type" content="text/h ...

  6. jq菜单折叠效果

    <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8" ...

  7. BootStrap入门教程 (四) :JQuery类库插件(模态窗口,滚动监控,标签效果,提示效果,“泡芙”效果,警告区域,折叠效果,旋转木马,输入提示)

    上讲回顾:Bootstrap组件丰富同时具有良好可扩展性,能够很好地应用在生产环境.这些组件包括按钮(Button),导航(Navigation),缩略图( thumbnails),提醒(Alert) ...

  8. 实现类似QQ的折叠效果

    //  主要核心是点击自定义header来展开和收起每一组里面的cell,模型里面应该有isShow此属性来记录开展还是收起. //  ViewController.m//  实现类似QQ的折叠效果/ ...

  9. Swift 2.0 封装图片折叠效果

    文/猫爪(简书作者)原文链接:http://www.jianshu.com/p/688c491580e3著作权归作者所有,转载请联系作者获得授权,并标注“简书作者”. 用Swift封装图片折叠效果 b ...

随机推荐

  1. 【Java】Java Servlet 技术简介

    Java 开发人员兼培训师 Roy Miller 将我们现有的 servlet 介绍资料修改成了这篇易于学习的实用教程.Roy 将介绍并解释 servlet 是什么,它们是如何工作的,如何使用它们来创 ...

  2. The Child and Toy

    Codeforces Round #250 (Div. 2) C:http://codeforces.com/problemset/problem/437/C 题意:给以一个无向图,每个点都有一点的权 ...

  3. 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 ...

  4. Mysql分页查询

    取前5条数据 select * from table_name limit 0,5 或 select * from table_name limit 5 取第11条到第15条数据,共5条 select ...

  5. 数学(错排):BZOJ 4517: [Sdoi2016]排列计数

    4517: [Sdoi2016]排列计数 Time Limit: 60 Sec  Memory Limit: 128 MBSubmit: 693  Solved: 434[Submit][Status ...

  6. ZOJ 3675 Trim the Nails

    http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=4918 DP+状态压缩. http://www.cnblogs.com/dgsr ...

  7. HDOJ(HDU) 2201 熊猫阿波的故事(概率问题)

    Problem Description 凡看过功夫熊猫这部电影的人都会对影片中那只憨憨的熊猫阿波留下相当深的印象,胖胖的熊猫阿波自从打败了凶狠强悍的雪豹泰龙以后,在和平谷的地位是越来越高,成为谷中第一 ...

  8. HDOJ(HDU) 2135 Rolling table

    Problem Description After the 32nd ACM/ICPC regional contest, Wiskey is beginning to prepare for CET ...

  9. 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 ...

  10. 【转】Linux下查看所有用户及用户组

    groups 查看当前登录用户的组内成员groups gliethttp 查看gliethttp用户所在的组,以及组内成员whoami 查看当前登录用户名/etc/group文件包含所有组/etc/s ...