今天看了一些博客文章分享了如何给ViewController 瘦身的问题, 其中一个就是tableView.

的确,随着产品迭代,VC里面可能越来越臃肿,有时候真的需要好好进行一次瘦身.可能是参考的博客中讲解更侧重于方法的复用,其实这个真的是很灵活的问题,有时候tableView list 都是同一规格就比较适合可复用的方法去实现,有时候就是需要单独自定义的,一个tableView 可能有不止两到三个cell 类型的情况. 所以针对后者.我也仿照着写了一个 把 UITableViewDataSource UITableViewDelegate 都提取出来单独做一个对象做处理.

需求:一个tableView 里面目前元素是 一行banner  一行时间  若干行list 元素组成

效果:

SectionDemo 如下:

//
// ViewController减负.h
// 链式DSL学习
//
// Created by HF on 17/3/8.
// Copyright © 2017年 HF-Liqun. All rights reserved.
// #import <UIKit/UIKit.h> @interface ViewController__ : UIViewController @property (nonatomic, strong) UITableView *tableView; @end
//
// ViewController减负.m
// 链式DSL学习
//
// Created by HF on 17/3/8.
// Copyright © 2017年 HF-Liqun. All rights reserved.
// #import "ViewController减负.h"
#import "HomeBannerCell.h"
#import "HomeTableViewDataSource.h" @interface ViewController__ () @property (nonatomic, strong) HomeTableViewDataSource *tabbleViewDataSource;
@end @implementation ViewController__ - (void)viewDidLoad {
[super viewDidLoad];
[self.view addSubview:self.tableView];
[self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
make.bottom.equalTo(self.view);
make.left.right.top.equalTo(self.view);
}]; //创建实例类tabbleViewDataSource
//传入数据 这个可以根据实际情况灵活处理
self.tabbleViewDataSource = [[HomeTableViewDataSource alloc]
initWithItems:@[@"好好",@"学习",@"天天",@"向上"] ]; //设置tableView 两个代理
self.tableView.dataSource = self.tabbleViewDataSource;
self.tableView.delegate = self.tabbleViewDataSource; //每个cell 行 点击触发 response
TableViewCellBannerAction bannnerAction = ^(id sender) {
NSLog(@"%@",sender);
};
TableViewCellDailyAction dailyAction = ^(id sender) {
NSLog(@"%@",sender);
};
TableViewCellListAction listAction = ^(id sender) {
NSLog(@"%@",sender);
};
self.tabbleViewDataSource.banneryAction = bannnerAction;
self.tabbleViewDataSource.dailyAction = dailyAction;
self.tabbleViewDataSource.listAction = listAction; } - (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
} - (UITableView *)tableView
{
if (!_tableView) {
_tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
_tableView.backgroundColor = [UIColor clearColor];
//_tableView.dataSource = self;
// _tableView.delegate = self;
// _tableView.separatorStyle = UITableViewCellSeparatorStyleNone; [self.tableView registerClass:[HomeBannerCell class] forCellReuseIdentifier:kHomeBannerCellID];
[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"tableViewCell"]; }
return _tableView;
} @end

接下来是具体实施的HomeTableViewDataSource

//
// HomeTableViewDataSource.h
// 链式DSL学习
//
// Created by HF on 17/3/8.
// Copyright © 2017年 HF-Liqun. All rights reserved.
// #import <Foundation/Foundation.h> typedef void (^TableViewCellBannerAction)(id sender);
typedef void (^TableViewCellDailyAction)(id sender);
typedef void (^TableViewCellListAction)(id sender); @interface HomeTableViewDataSource : NSObject <UITableViewDelegate, UITableViewDataSource>
@property (nonatomic, copy) TableViewCellBannerAction banneryAction;
@property (nonatomic, copy) TableViewCellDailyAction dailyAction;
@property (nonatomic, copy) TableViewCellListAction listAction; /**
传入数据源 @param anItems anItems
@return anItems
*/
- (id)initWithItems:(NSArray *)anItems; @end //
// HomeTableViewDataSource.m
// 链式DSL学习
//
// Created by HF on 17/3/8.
// Copyright © 2017年 HF-Liqun. All rights reserved.
// #import "HomeTableViewDataSource.h"
#import "HomeBannerCell.h" typedef NS_ENUM(NSUInteger, HomeSectionType) {
HomeSectionTypeBanner, //banner
HomeSectionTypeDaily, //date
HomeSectionTypeList //List
}; @interface HomeTableViewDataSource ()
{
NSMutableArray *sectionInfo;
}
@property (nonatomic, strong) NSArray *items; @end @implementation HomeTableViewDataSource - (id)init
{
return nil;
} - (id)initWithItems:(NSArray *)anItems
{
self = [super init];
if (self) {
sectionInfo = [NSMutableArray array];
[sectionInfo addObject:@(HomeSectionTypeBanner)];
[sectionInfo addObject:@(HomeSectionTypeDaily)];
if (anItems.count > ) {
[sectionInfo addObject:@(HomeSectionTypeList)]; //list 列表
}
self.items = anItems; }
return self;
} - (id)itemAtIndexPath:(NSIndexPath *)indexPath
{
return self.items[(NSUInteger) indexPath.row];
} #pragma mark UITableViewDataSource - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return sectionInfo.count;
} - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if (HomeSectionTypeBanner == [sectionInfo[section] integerValue]) {
return ;
}
if (HomeSectionTypeDaily == [sectionInfo[section] integerValue]) {
return ;
}
if (HomeSectionTypeList == [sectionInfo[section] integerValue]) {
return self.items.count;
}
return ;
} - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSInteger section = indexPath.section;
if (HomeSectionTypeBanner == [sectionInfo[section] integerValue]) {
HomeBannerCell *cell = [tableView dequeueReusableCellWithIdentifier:kHomeBannerCellID forIndexPath:indexPath];
return cell;
}
if (HomeSectionTypeDaily == [sectionInfo[section] integerValue]) {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"tableViewCell"
forIndexPath:indexPath];
cell.textLabel.text = [NSString stringWithFormat:@"%@",[NSDate date]];
cell.textLabel.font = [UIFont boldSystemFontOfSize:];
cell.textLabel.textAlignment = NSTextAlignmentCenter;
return cell;
}
if (HomeSectionTypeList == [sectionInfo[section] integerValue]) {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"tableViewCell"
forIndexPath:indexPath];
id item = [self itemAtIndexPath:indexPath];
cell.textLabel.text = [NSString stringWithFormat:@"%@",item]; return cell;
}
return [UITableViewCell new];
} #pragma mark UITableViewDelegate - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSInteger section = indexPath.section;
if (HomeSectionTypeBanner == [sectionInfo[section] integerValue]) {
return [HomeBannerCell getCellHeight];
}
if (HomeSectionTypeDaily == [sectionInfo[section] integerValue]) {
return ;
}
if (HomeSectionTypeList == [sectionInfo[section] integerValue]) {
return ;
}
return ;
} - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSInteger section = indexPath.section;
if (HomeSectionTypeBanner == [sectionInfo[section] integerValue]) {
if (self.banneryAction) {
self.banneryAction(@"点击了banner");
}
}
if (HomeSectionTypeDaily == [sectionInfo[section] integerValue]) {
if (self.dailyAction) {
self.dailyAction(@"点击了日期");
}
}
if (HomeSectionTypeList == [sectionInfo[section] integerValue]) {
if (self.listAction) {
id item = [self itemAtIndexPath:indexPath];
self.listAction([NSString stringWithFormat:@"点击了list单元 %@",item]);
}
}
} @end 

参考:

1.https://objccn.io/issue-1-1/

iOS 给 ViewController 减负 之 UITableView的更多相关文章

  1. iOS全埋点解决方案-UITableView和UICollectionView点击事件

    前言 在 $AppClick 事件采集中,还有两个比较特殊的控件: UITableView •UICollectionView 这两个控件的点击事件,一般指的是点击 UITableViewCell 和 ...

  2. iOS开发UI篇—实现UItableview控件数据刷新

    iOS开发UI篇—实现UItableview控件数据刷新 一.项目文件结构和plist文件 二.实现效果 1.说明:这是一个英雄展示界面,点击选中行,可以修改改行英雄的名称(完成数据刷新的操作). 运 ...

  3. iOS开发UI篇—使用UItableview完成一个简单的QQ好友列表(一)

    iOS开发UI篇—使用UItableview完成一个简单的QQ好友列表(一) 一.项目结构和plist文件 二.实现代码 1.说明: 主控制器直接继承UITableViewController // ...

  4. iOS开发UI篇—在UITableview的应用中使用动态单元格来完成app应用程序管理界面的搭建

    iOS开发UI篇—在UITableview的应用中使用动态单元格来完成app应用程序管理界面的搭建 一.实现效果 说明:该示例在storyboard中使用动态单元格来完成. 二.实现 1.项目文件结构 ...

  5. IOS开发之表视图(UITableView)

    IOS开发之表视图(UITableView)的基本介绍(一) (一):UITableView的基本概念 1.在IOS开发中,表视图的应用十分广泛和普及.因此掌握表视图的用法显得非常重要.一般情况下对于 ...

  6. iOS学习笔记之UITableViewController&UITableView

    iOS学习笔记之UITableViewController&UITableView 写在前面 上个月末到现在一直都在忙实验室的事情,与导师讨论之后,发现目前在实验室完成的工作还不足以写成毕业论 ...

  7. iOS学习笔记(4) — UITableView的 重用机制

    iOS学习笔记(4) — UITableView的 重用机制 UITableView中的cell是动态的,在使用过程中,系统会根据屏幕的高度(480)和每个cell的高度计算屏幕中需要显示的cell的 ...

  8. iOS UI-表格控制器(UITableView)-基本使用

    tableView的常见属性 cell的常见属性 一.一般情况 #import "ViewController.h" @interface ViewController ()< ...

  9. iOS学习——ViewController(六)

    ViewController是iOS应用程序中重要的部分,是应用程序数据和视图之间的重要桥梁,ViewController管理应用中的众多视图. iOS的SDK中提供很多原生ViewControlle ...

随机推荐

  1. 甲醛(Formaldehyde)

    化学式:HCHO 又称蚁醛 无色气体,有特殊的刺激气味 气体相对密度1.067(空气=1),液体密度0.815g/cm³(-20℃).熔点-92℃,沸点-19.5℃.易溶于水和乙醇.水溶液的浓度最高可 ...

  2. 第一百七十一节,jQuery,高级事件,模拟操作,命名空间,事件委托,on、off 和 one

    jQuery,高级事件,模拟操作,命名空间,事件委托,on.off 和 one 学习要点: 1.模拟操作 2.命名空间 3.事件委托 4.on.off 和 one jQuery 不但封装了大量常用的事 ...

  3. JavaScript 框架(库)

    JavaScript 高级程序设计(特别是对浏览器差异的复杂处理),通常很困难也很耗时. 为了应对这些调整,许多的 JavaScript (helper) 库应运而生. 这些 JavaScript 库 ...

  4. jquery 插件 起步代码

    /** * Created by W.J.Chang on 2014/6/25. */ ;(function($) { var methods= { check: function() { retur ...

  5. Charles常用设置

    一.软件说明 Charles 通过将自己设置成系统的网络访问代理服务器,使得所有的网络访问请求都通过它来完成,从而实现了网络封包的截取和分析. 二.mock数据 场景说明: 使用步骤: 1.保存待测试 ...

  6. CodeIgniter框架——nginx下的配置

    odeigniter(CI)是一个轻量型的PHP优秀框架,但是它是在apache服务器下开发的,在nginx下需要特别的配置才可以使用. 对nginx的配置如下: server { listen 80 ...

  7. 带参数的main函数

    带参数的main函数 int main(int argc,char **argv)  或int main(int argc,char *argv[])  /*解析 依据<C程序设计语言(第二版. ...

  8. PAT trie

    最近在上计算机应用编程,老师给了一个大小为900MB的含20000000行邮箱地址的文件. 然后再给出了1000条查询数据,让你用字典树建树然后查询是否出现过. 试了下普通的tire树,特意用二进制写 ...

  9. 《从零开始学Swift》学习笔记(Day 49)——扩展声明

    原创文章,欢迎转载.转载请注明:关东升的博客 声明扩展的语法格式如下: extension 类型名 { //添加新功能 } 声明扩展的关键字是extension,“类型名”是Swift中已有的类型,包 ...

  10. 第五课 nodejs 路由实现并处理请求作出响应

    1创建一个http Server 文件server.js var http = require('http');var url = require('url');function start(rout ...