TableView 下拉demo

今天给大家分享一个tableView 下拉效果的小demo。
首先,创建我们需要的类,两个model:一个大model,用来装载分区头,一个小model,装载每个分组中的好友信息。起类名的时候需要见名知意,如下图:


需要创建的类

看一下plist文件中的数据,如何进行解析:


BigModel装载的对应数据

SmallModel装载的数据

在BigModel中声明对应的key值属性,还要声明一个bool类型,用于后面的状态判断:
//
//  BigModel.h
//  UI_QQListProject
//
//  Created by 奇二世界 on 16/6/23.
//  Copyright © 2016年 YMN. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface BigModel : NSObject

@property (nonatomic, strong) NSString *name;
@property (nonatomic, strong) NSString *online;
@property (nonatomic, strong) NSMutableArray *friends;

// 判断点击分区头下拉还是收起好友
@property (nonatomic, assign) BOOL isOpen;
@end

在SmallModel中声明对应的key值属性:

//
//  SmallModel.h
//  UI_QQListProject
//
//  Created by 奇二世界 on 16/6/23.
//  Copyright © 2016年 YMN. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface SmallModel : NSObject

@property (nonatomic, strong) NSString *icon;
@property (nonatomic, strong) NSString *intro;
@property (nonatomic, strong) NSString *name;
@property (nonatomic, strong) NSNumber *vip;
@end

在两个model 的 .m 文件中要写 setValue forUndefinedKey 这个方法,以防出现未定义的key:

- (void)setValue:(id)value forUndefinedKey:(NSString *)key
{
}

我是直接在 ViewController 写的,导入头文件,定义一个tableView 铺放界面、声明一个 modelArray 装载数据:

//
//  ViewController.m
//  UI_QQListProject
//
//  Created by 奇二世界 on 16/6/23.
//  Copyright © 2016年 YMN. All rights reserved.
//

#import "ViewController.h"
#import "BigModel.h"
#import "SmallModel.h"

// 把屏幕的宽、高定义成宏定义,方便调用
#define ScreenW [UIScreen mainScreen].bounds.size.width
#define ScreenH [UIScreen mainScreen].bounds.size.height

@interface ViewController ()<UITableViewDataSource, UITableViewDelegate>


@property (nonatomic, strong) UITableView *tableV;

@property (nonatomic, strong) NSMutableArray *modelArray;


@end

@implementation ViewController

// modelArray 懒加载、解析数据
- (NSMutableArray *)modelArray
{
    if (!_modelArray)
    {
        _modelArray = [NSMutableArray array];
        
        NSString *path = [[NSBundle mainBundle] pathForResource:@"friends" ofType:@"plist"];
        NSMutableArray *array = [NSMutableArray arrayWithContentsOfFile:path];
         // 解析大model:分组
        for (NSDictionary *dic in array)
        {
            BigModel *bigModel = [[BigModel alloc] init];
            [bigModel setValuesForKeysWithDictionary:dic];
            
            // 解析小model:对应的好友信息
            NSMutableArray *friendsArr = dic[@"friends"];
            // !!! 一定要将装载小model的数组bigModel.friends初始化
            bigModel.friends = [NSMutableArray array];
            for (NSDictionary *dic1 in friendsArr)
            {
                SmallModel *smallModel = [[SmallModel alloc] init];
                [smallModel setValuesForKeysWithDictionary:dic1];
                // 把小model装入大model的好友数组中
                [bigModel.friends addObject:smallModel];
            }
            // 将装入小model信息的大model装入数组中
            [self.modelArray addObject:bigModel];
        }
    }
    return _modelArray;
}


- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.tableV = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, ScreenW, ScreenH) style:(UITableViewStylePlain)];
    self.tableV.dataSource = self;
    self.tableV.delegate = self;
    
    [self.view addSubview:self.tableV];
}

#pragma mark -- 协议中的方法
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return self.modelArray.count;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    BigModel *bigModel = self.modelArray[section];
    // 如果分区头是下拉状态,返回好友个数
    if (bigModel.isOpen)
    {
        // 返回大数组中friends数组中的每个分区好友个数
        return bigModel.friends.count;
    }
    // 否则,分区头是收起状态,cell则不显示,行数为0
    return 0;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
    if (!cell) 
    {
        cell = [[UITableViewCell alloc] initWithStyle:(UITableViewCellStyleSubtitle) reuseIdentifier:@"cell"];
    }
    
    BigModel *bigModel = self.modelArray[indexPath.section];
    SmallModel *smallModel = bigModel.friends[indexPath.row];
    cell.textLabel.text = smallModel.name;
    cell.detailTextLabel.text = smallModel.intro;
    cell.imageView.image = [UIImage imageNamed:smallModel.icon];
    
    return cell;
}

// tableView 的分区头
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, ScreenW, 50)];
    view.tag = section + 100; // 点击手势时使用tag值判断点击的是哪个分区头
    [self.view addSubview:view]; // 一定要将自定义的分区头添加到根视图上
    
    BigModel *model = self.modelArray[section];
    
    UIImageView *imageV = [[UIImageView alloc] initWithFrame:CGRectMake(10, 20, 10, 10)];
    imageV.image = [UIImage imageNamed:@"buddy_header_arrow"];
    [view addSubview:imageV];
    
    // 判断下拉状态还是收起状态,来决定箭头图片旋转度数:
    imageV.transform = model.isOpen ? CGAffineTransformMakeRotation(M_PI_2) : CGAffineTransformMakeRotation(0);
   
    UILabel *groupNameL = [[UILabel alloc] initWithFrame:CGRectMake(35, 0, 150, 50)];
    groupNameL.text = model.name;
    [view addSubview:groupNameL];
    
    UILabel *numberL = [[UILabel alloc] initWithFrame:CGRectMake(ScreenW - 50, 0, 50, 50)];
    numberL.text = [NSString stringWithFormat:@"%@/%ld", model.online, model.friends.count];
    [view addSubview:numberL];
    
    // 分区头之前的线
    UIView *lineV = [[UIView alloc] initWithFrame:CGRectMake(0, 0, ScreenW, 1)];
    lineV.backgroundColor = [UIColor grayColor];
    [view addSubview:lineV]; // 或者把分区尾的高度设置成1,实现相同的效果
    
    // 给分区头添加一个手势
    UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapAction:)];
    [view addGestureRecognizer:tap];
    
    return view;

}

// 返回分区头的高度
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
    return 50;
}

#pragma mark -- 手势的点击方法
- (void)tapAction:(UITapGestureRecognizer *)tap
{
    UIView *view = tap.view;
   NSInteger index = view.tag - 100;
    
    BigModel *model = self.modelArray[index];
    model.isOpen = !model.isOpen;
    [self.tableV reloadData]; // 一定要刷新UI
}

@end

以下是运行之后的效果图:
注意看分组前面的小箭头的状态,代码中有详细说明


收起的效果.

下拉效果
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,585评论 18 139
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,016评论 4 62
  • 概述在iOS开发中UITableView可以说是使用最广泛的控件,我们平时使用的软件中到处都可以看到它的影子,类似...
    liudhkk阅读 8,978评论 3 38
  • ———— 上午与师兄通完电话,甚感莫名荒疏,心意莫可名状,无所寄著,无处着力,无得抓握。不想做事,又百无聊赖,手边...
    莲心竹韵阅读 427评论 0 2
  • 生意的本质是赚钱,合作的本质是双赢,只有双赢了才可以合作长久,愉快的合作才能愉快的赚钱嘛,对不对。本质解决完了,下...
    佩奇的快乐生活阅读 816评论 0 0