UITableView的UITableViewStyleGrouped

以下图例就是分组UITableViewStyleGrouped的样式

本人提供快速集成的方法,不弄脏你那双手:)

源码:

TableViewData.h

//
//  TableVewData.h
//  Sections
//
//  Copyright (c) 2014年 Y.X. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface TableViewData : NSObject

// 添加数据源 + 数据源标签
- (void)addDataArray:(NSArray *)array arrayFlag:(NSString *)flag;

// 对应区域中的row的个数
- (NSInteger)numberOfRowsInSection:(NSInteger)section;

// 有几个section
- (NSInteger)numberOfSections;

// 对应于Section上的flag值标签
- (NSString *)flagInSection:(NSInteger)section;

// 对应于indexPath中的数据
- (id)dataInIndexPath:(NSIndexPath *)indexPath;

@end

TableViewData.m

//
//  TableVewData.m
//  Sections
//
//  Copyright (c) 2014年 Y.X. All rights reserved.
//

#import "TableViewData.h"

@interface TableViewData ()

@property (nonatomic, strong) NSMutableArray  *dataArray;
@property (nonatomic, strong) NSMutableArray  *nameList;

@end

@implementation TableViewData

- (instancetype)init
{
    self = [super init];
    if (self)
    {
        _dataArray = [NSMutableArray new];
        _nameList  = [NSMutableArray new];
    }
    return self;
}

- (void)addDataArray:(NSArray *)array arrayFlag:(NSString *)flag
{
    [_dataArray addObject:array];
    [_nameList  addObject:flag];
}

- (NSInteger)numberOfRowsInSection:(NSInteger)section
{
    return [_dataArray[section] count];
}

- (NSInteger)numberOfSections
{
    return [_dataArray count];
}

- (NSString *)flagInSection:(NSInteger)section
{
    return _nameList[section];
}

- (id)dataInIndexPath:(NSIndexPath *)indexPath
{
    return _dataArray[indexPath.section][indexPath.row];
}

@end

使用情况:

//
//  RootViewController.m
//  UITableViewGroup
//
//  Copyright (c) 2014年 Y.X. All rights reserved.
//

#import "RootViewController.h"
#import "TableViewData.h"

static NSString *reusedFlag = @"reusedFlag";

@interface RootViewController ()<UITableViewDataSource, UITableViewDelegate>

@property (nonatomic, strong) UITableView    *tableView;
@property (nonatomic, strong) TableViewData  *tableViewData;

@end

@implementation RootViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    // 初始化tableView(分组形势的tableView)
    _tableView = [[UITableView alloc] initWithFrame:self.view.bounds
                                              style:UITableViewStyleGrouped];
    _tableView.delegate   = self;
    _tableView.dataSource = self;
    [self.view addSubview:_tableView];

    // tableView数据
    _tableViewData = [TableViewData new];
    [_tableViewData addDataArray:@[@"1", @"2", @"3"]         arrayFlag:@"设置"]; // section1
    [_tableViewData addDataArray:@[@"一", @"二", @"三"]       arrayFlag:@"配置"]; // section2
    [_tableViewData addDataArray:@[@"one", @"two", @"three"] arrayFlag:@"闲置"]; // section3
}

// 每个区多少个cell
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [_tableViewData numberOfRowsInSection:section];
}

// 创建cell
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reusedFlag];
    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
                                      reuseIdentifier:reusedFlag];
    }

    // section1
    if ([[_tableViewData flagInSection:indexPath.section] isEqualToString:@"设置"])
    {
        NSString *str            = [_tableViewData dataInIndexPath:indexPath];
        cell.textLabel.text      = str;
        cell.textLabel.textColor = [UIColor redColor];
    }

    // section2
    if ([[_tableViewData flagInSection:indexPath.section] isEqualToString:@"配置"])
    {
        NSString *str            = [_tableViewData dataInIndexPath:indexPath];
        cell.textLabel.text      = str;
        cell.textLabel.textColor = [UIColor blueColor];
    }

    // section3
    if ([[_tableViewData flagInSection:indexPath.section] isEqualToString:@"闲置"])
    {
        NSString *str            = [_tableViewData dataInIndexPath:indexPath];
        cell.textLabel.text      = str;
        cell.textLabel.textColor = [UIColor magentaColor];
    }

    return cell;
}

// 多少个区
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return [_tableViewData numberOfSections];
}

// 每个区的标题
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    return [_tableViewData flagInSection:section];
}

@end

几个需要注意的地方:

以下两个方法是DataSource中的,直接与分组有关.

不同的section配置不同的标题.

看起来应该很直白:)

时间: 2024-10-31 10:24:06

UITableView的UITableViewStyleGrouped的相关文章

iOS tableView 中 UITableView中UITableViewStyleGrouped和UITableViewStylePlain的区别

一, UITableViewStyleGrouped 注意:去掉头部和中间间隔正确的理解方法1.设置标头的高度为特小值 (不能为零 为零的话苹果会取默认值就无法消除头部间距了)UIView *view = [[UIView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 0.001)];view.backgroundColor = [UIColor redColor];self.tableView.tableHea

UITableViewStyleGrouped类型的UITabelView使用技巧

转发自:作者 Code_Ninja 我们知道使用UITableView的时候有个技巧:使用table.tableFooterView = [UIView new];一行代码可以解决UITableView在cell比较少的情况下不显示下面的分割线条How to remove empty cells in UITableView?.今天在使用UITableViewStyleGrouped类型的UITableView的时候又发现一个小技巧.当设置UITableView为UITableViewStyle

UItableView与UICollectionView

UITableView 1. UITableViewStyleGrouped 分区表格样式创建表格 .separatorStyle = UITableViewCellSeparatorStyleSingleLineEtched;  // 雕刻,双线效果. 测试无效 2. UITableView的其他方法属性 // 表格是否进入编辑模式 ,用以显示添加,删除,移动标识 setEditing:   // 添加,删除不能同时显示 .allowsSelectionDuringEditing   // 在

简述UITableView的属性和用法

UITableView UITableView内置了两种样式:UITableViewStylePlain,UITableViewStyleGrouped   <UITableViewDataSource,UITableViewDelegate>里的方法: tableView处理步骤 1.有多少组 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView 2.第section组头部控件有多高 - (CGFloat)tabl

UITableView详细注释

style //普通 UITableViewStylePlain, //分组 UITableViewStyleGrouped //表格视图 UITableView * tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain]; //设置数据源 tableView.dataSource = self; //设置代理 tableView.delegate = self; /

UITableView全面解析

本文转自:http://www.cocoachina.com/ios/20140922/9710.html 在iOS开发中UITableView可以说是使用最广泛的控件,我们平时使用的软件中到处都可以看到它的影子,类似于微信.QQ.新浪微博等软件基本上随处都是UITableView.当然它的广泛使用自然离不开它强大的功能,今天这篇文章将针对UITableView重点展开讨论.今天的主要内容包括: 1.基本介绍 2.数据源 3.代理 4.性能优化 5.UITableViewCell 6.常用操作

UITableView(五)

1 #import "ViewController.h" 2 #import "FirstModel.h" 3 #import "FirstTableViewCell.h" 4 #import "Tool.h" 5 @interface ViewController ()<UITableViewDataSource,UITableViewDelegate> 6 @property(nonatomic,strong)

UITableView 总结(一)

UITableView初始化:表格控件在创建时,必须指定style. UITableView的分以下为两种 UITableViewStylePlain:平板格式 UITableViewStyleGrouped:分组格式 1 - (UITableView *)tableView 2 { 3 if (_tableView == nil) { 4 // 表格控件在创建时,必须指定style 5 _tableView = [[UITableView alloc] initWithFrame:self.v

iOS UI基础-9.0 UITableView基础

在iOS中,要实现表格数据展示,最常用的做法就是使用UITableView.UITableView继承自UIScrollView,因此支持垂直滚动,而且性能极佳. UITableView有两种样式: 一列显示:UITableViewStylePlain 分组显示:UITableViewStyleGrouped tableView展示数据的过程 1.调用数据源的下面方法得知一共有多少组数据 - (NSInteger)numberOfSectionsInTableView:(UITableView