iOS表格的实现思路

需求 表格展现看房记录,X轴为星期,Y轴为时间

需求.png

首先第一个想到的是用UICollectionView,这样虽然可以画出表格,但是赋值没办法精确,最后用TableView的方式实现

设置数据源

_times = @[@"18:00-21:00",@"14:00-17:59",@"11:00-13:59",@"9:00-10:59",@"6:00-8:59"];

_weeks = @[@"星期一",@"星期二",@"星期三",@"星期四",@"星期五",@"星期六",@"星期日"];


- (void)setupFormData {
    
    for (NSInteger i = 0; i < self.weeks.count; i++) {
        
        [self.timeDatas removeAllObjects];
        NSArray *times = [NSArray array];
        for (NSInteger j = 0; j < self.times.count; j++) {
            HCFormItem *item = [[HCFormItem alloc] init];
            item.num = 0;
            
            if (i == 0 && j == 0) {
                item.num = 1;
                item.color = @"#00B0FF";
            }
            if (i == 1 && j == 0) {
                item.num = 1;
                item.color = @"#00B0FF";
            }
            if (i == 2 && j == 1) {
                item.num = 4;
                item.color = @"#00E5FF";
            }
            if (i == 3 && j == 1) {
                item.num = 3;
                item.color = @"#00E5FF";
            }
            if (i == 4 && j == 1) {
                item.num = 4;
                item.color = @"#00E5FF";
            }
            if (i == 5 && j == 4) {
                item.num = 10;
                item.color = @"#FF3D00";
            }
            if (i == 6 && j == 3) {
                item.num = 8;
                item.color = @"#FFBC00";
            }
            [self.timeDatas addObject:item];
        }
        times = self.timeDatas.copy;
        [self.weekDatas addObject:times];
    }
}

用UITableView画出表格,线的颜色为背景色,用间隔充当线条

背景色

self.view.backgroundColor = [UIColor whiteColor];
UIView *formBGView = [[UIView alloc] init];
formBGView.backgroundColor = [UIColor colorWithHexString:kGray_Light_HC];
[self.bgView addSubview:formBGView];
formBGView.frame = CGRectMake(78, self.priceChart.bottom, 260, 120);

画表格

for (NSInteger i = 0; i < self.weekDatas.count; i++) {
        
        UITableView *tableView = [[UITableView alloc] init];
        tableView.tag = 101 + i;
        tableView.dataSource = self;
        tableView.delegate = self;
        tableView.scrollEnabled = NO;
        tableView.tableFooterView = [self setupFooterView:i];
        tableView.showsVerticalScrollIndicator = NO;
        [self.bgView addSubview:tableView];
        CGFloat tableViewX = 36 * i + 1 * (i + 1) + 78;
        CGFloat tableViewY = formBGView.top + 1;
        CGFloat tableViewW = 36;
        CGFloat tableViewH = 24 * (self.timeDatas.count + 1);
        tableView.frame = CGRectMake(tableViewX, tableViewY, tableViewW, tableViewH);
    }

下面实现DataSource和Delegate

#pragma mark - —————————————————————UITableView DataSource&Delegate—————————————————————
#pragma mark - UITableView DataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    
    return self.timeDatas.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    // 200 为Y轴的数据源
    if (tableView.tag == 200) {
         UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
        cell.selectionStyle = UITableViewCellSelectionStyleNone;
        
        UILabel *timeLabel = [[UILabel alloc] init];
        [cell.contentView addSubview:timeLabel];
        timeLabel.textColor = [UIColor colorWithHexString:KTextGray];
        timeLabel.font = [UIFont systemFontOfSize:8];
        timeLabel.text = self.times[indexPath.row];
        timeLabel.textAlignment = NSTextAlignmentCenter;
        timeLabel.frame = CGRectMake(0, 4, 78, 20 );
        return cell;
    }
    HCFormCell *cell = [[HCFormCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"HCFormCell"];
    NSInteger index = tableView.tag - 101;
    NSArray *times = self.weekDatas[index];
    HCFormItem *item = times[indexPath.row];
    cell.formItem = item;
    [tableView setSeparatorColor:[UIColor colorWithHexString:kGray_Light_HC]];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    return cell;
}

#pragma mark - UITableView Delegate
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return 24;
}

#pragma mark - cell分割线填满
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
        [cell setSeparatorInset:UIEdgeInsetsZero];
    }
    
    if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
        [cell setLayoutMargins:UIEdgeInsetsZero];
    }
    
}

XY轴

X轴由于是在UITableView的底布,所有采用FooterView,而Y轴则是单独在左侧再写一个TableView

X轴

- (UIView *)setupFooterView:(NSInteger)index {
    UIView *footerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 36, 24)];
    footerView.backgroundColor = [UIColor colorWithHexString:kGray_Light_HC];
    
    UILabel *weekLabel = [[UILabel alloc] init];
    weekLabel.font = [UIFont systemFontOfSize:8];
    weekLabel.backgroundColor = [UIColor whiteColor];
    weekLabel.textColor = [UIColor colorWithHexString:KTextGray];
    weekLabel.textAlignment = NSTextAlignmentCenter;
    weekLabel.text = self.weeks[index];
    [footerView addSubview:weekLabel];
    weekLabel.frame = CGRectMake(0, 1, footerView.width, footerView.height - 1);
    return footerView;
}

Y轴

UITableView *formY = [[UITableView alloc] init];
formY.tag = 200;
formY.dataSource = self;
formY.delegate = self;
formY.scrollEnabled = NO;
formY.tableFooterView = [UIView new];
formY.showsVerticalScrollIndicator = NO;
formY.separatorStyle = UITableViewCellSeparatorStyleNone;

[self.bgView addSubview:formY];
CGFloat formYX = 0;
CGFloat formYY = formBGView.top + 1;
CGFloat formYW = 78;
CGFloat formYH = 24 * self.timeDatas.count;
formY.frame = CGRectMake(formYX, formYY, formYW, formYH);

运行效果

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

推荐阅读更多精彩内容

  • 1、通过CocoaPods安装项目名称项目信息 AFNetworking网络请求组件 FMDB本地数据库组件 SD...
    阳明先生_X自主阅读 15,969评论 3 119
  • 一、简介 <<UITableView(或简单地说,表视图)的一个实例是用于显示和编辑分层列出的信息的一种手段 <<...
    无邪8阅读 10,589评论 3 3
  • 1.ios高性能编程 (1).内层 最小的内层平均值和峰值(2).耗电量 高效的算法和数据结构(3).初始化时...
    欧辰_OSR阅读 29,334评论 8 265
  • 人生不过二十载,大喜大悲还未曾经历,小痛小伤倒是不少。不敢说领悟人生,毕竟也才二十来岁。不过对于社会生活进...
    该账号乃无名氏阅读 190评论 0 0
  • 管理者必读的10个精华故事 2014-09-22 顶级企业家交流群 一、用人之道 去过庙的人都知道,一进庙门,首先...
    Destiny1213阅读 316评论 0 0