UITableViewStylePlain UITableViewStyleGrouped
缓存
1> UITableView须要一个数据源(dataSource)来显示数据,UITableView会向数据源查询一共有多少行数据以及每一行显示什么数据等。没有设置数据源的UITableView只是个空壳。凡是遵照UITableViewDataSource协议的OC对象,均可以是UITableView的数据源ide
2> 一般都要为UITableView设置代理对象(delegate),以便在UITableView触发一下事件时作出相应的处理,好比选中了某一行。凡是遵照了UITableViewDelegate协议的OC对象,均可以是UITableView的代理对象布局
3>通常会让控制器充当UITableView的dataSource和delegate动画
@requiredui
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;atom
第section分区一共有多少行spa
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;代理
建立第section分区第row行的UITableViewCell对象(indexPath包含了section和row)code
@optionalorm
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView; 一共有多少个分区
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section;
第section分区的头部标题
- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section;
第section分区的底部标题
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath;
某一行是否能够编辑(删除)
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath;
某一行是否能够移动来进行从新排序
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView;
UITableView右边的索引栏的内容
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
选中了UITableView的某一行
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
某一行的高度
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
第section分区头部的高度
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
第section分区尾部的高度
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
第section分区头部显示的视图
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
第section分区尾部显示的视图
- (NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath
设置每一行的等级缩进(数字越小,等级越高)
UITableView的每一行都是一个UITableViewCell,经过dataSource的tableView:cellForRowAtIndexPath:方法来初始化每一行
UITableViewCell是UIView的子类,内部有个默认的子视图:contentView。contentView是UITableViewCell所显示内容的父视图,并负责显示一些辅助指示视图。辅助指示视图的做用是显示一个表示动做的图标,能够经过设置UITableViewCell的accessoryType来显示,默认是UITableViewCellAccessoryNone(不显示辅助指示视图),其余值以下:
UITableViewCellAccessoryDisclosureIndicator
UITableViewCellAccessoryDetailDisclosureButton
UITableViewCellAccessoryCheckmark
> contentView下默认有3个子视图,其中的2个是UILabel(经过UITableViewCell的textLabel和detailTextLabel属性访问),第3个是UIImageView(经过UITableViewCell的imageView属性访问)
> UITableViewCell还有一个UITableViewCellStyle属性,用于决定使用contentView的哪些子视图,以及这些子视图在contentView中的位置
结构图:
iOS设备的内存有限,若是用UITableView显示成千上万条数据,就须要成千上万个UITableViewCell对象的话,那将会耗尽iOS设备的内存。要解决该问题,须要重用UITableViewCell对象。
重用原理:当滚动列表时,部分UITableViewCell会移出窗口,UITableView会将窗口外的UITableViewCell放入一个对象池中,等待重用。当UITableView要求dataSource返回UITableViewCell时,dataSource会先查看这个对象池,若是池中有未使用的UITableViewCell,dataSource会用新的数据配置这个UITableViewCell,而后返回给UITableView,从新显示到窗口中,从而避免建立新对象。
还有一个很是重要的问题:有时候须要自定义UITableViewCell(用一个子类继承UITableViewCell),并且每一行用的不必定是同一种UITableViewCell(如短信聊天布局),因此一个UITableView可能拥有不一样类型的UITableViewCell,对象池中也会有不少不一样类型的UITableViewCell,那么UITableView在重用UITableViewCell时可能会获得错误类型的UITableViewCell。
解决方案:UITableViewCell有个NSString *reuseIdentifier属性,能够在初始化UITableViewCell的时候传入一个特定的字符串标识来设置reuseIdentifier(通常用UITableViewCell的类名)。当UITableView要求dataSource返回UITableViewCell时,先经过一个字符串标识到对象池中查找对应类型的UITableViewCell对象,若是有,就重用,若是没有,就传入这个字符串标识来初始化一个UITableViewCell对象
一个UITableView中不一样类型的UITableViewCell
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *identifier = @"UITableViewCell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier]; if (cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier] autorelease]; } cell.textLabel.text = [NSString stringWithFormat:@"Text %i", indexPath.row]; return cell; }
设置背景
backgroundView
设置被选中时的背景视图
selectedBackgroundView
selectionStyle属性可设置UITableViewCell被选中时的背景颜色:
UITableViewCellSelectionStyleNone 没有颜色
UITableViewCellSelectionStyleBlue 蓝色(默认)
UITableViewCellSelectionStyleGray 灰色
通常有两种方式:
用一个xib文件来描述UITableViewCell的内容
①经过代码往UITableViewCell的contentView中添加子视图,在初始化方法(好比init、initWithStyle:reuseIdentifier:)中添加子控件,在layoutSubviews方法中分配子控件的位置和大小。
UITableView有个editing属性,设置为YES时,能够进入编辑模式。在编辑模式下,能够管理表格中的行,好比改变行的排列顺序、增长行、删除行,但不能修改行的内容
多种方式开启编辑模式
@property(nonatomic, getter=isEditing) BOOL editing -(void)setEditing:(BOOL)editing animated:(BOOL)animated
首先要开启编辑模式
实现UITableViewDataSource的以下方法:
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { // 若是UITableView提交的是删除指令 if (editingStyle == UITableViewCellEditingStyleDelete) { // 删除真实数据 // [self.data removeObjectAtIndex:indexPath.row]; // 删除UITableView中的某一行(带动画效果) [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationLeft]; // 若是不考虑动画效果,也能够直接[tableView reload]; } }
首先要开启编辑模式
实现UITableViewDataSource的以下方法(若是没有实现此方法,将没法换行)
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath { int from = sourceIndexPath.row; int to = destinationIndexPath.row; if (from == to) return; // 交换数据 // [self.data exchangeObjectAtIndex:from withObjectAtIndex:to]; }
当某行被选中时会调用此方法(UITableViewDelegate的方法)
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { //取消选中某一行,让被选中行的高亮颜色消失(带动画效果) [tableView deselectRowAtIndexPath:indexPath animated:YES]; }
- (id)initWithFrame:(CGRect)frame style:(UITableViewStyle)style // 初始化一个UITableView,而且设置表格样式 - (void)reloadData // 从新访问数据源,刷新界面 - (NSInteger)numberOfSections // 分区的个数 - (NSInteger)numberOfRowsInSection:(NSInteger)section // 第section分区的行数 - (UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPath // 经过indexPath找到对应的UITableViewCell对象 - (void)setEditing:(BOOL)editing animated:(BOOL)animated // 是否要开启编辑模式 - (void)deselectRowAtIndexPath:(NSIndexPath *)indexPath animated:(BOOL)animated // 取消选中某一行,让被选中行的高亮颜色消失(带动画效果) - (id)dequeueReusableCellWithIdentifier:(NSString *)identifier // 经过identifier在(缓存)池中找到对应的UITableViewCell对象 - (void)deleteRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation // 移除indexPaths范围内的全部行 @property(nonatomic,readonly) UITableViewStyle style // 表格样式 @property(nonatomic,assign) id <UITableViewDataSource> dataSource // 数据源 @property(nonatomic,assign) id <UITableViewDelegate> delegate // 代理 @property(nonatomic,getter=isEditing) BOOL editing // 是否为编辑模式 @property(nonatomic) UITableViewCellSeparatorStyle separatorStyle // 设置分隔线的样式 @property(nonatomic,retain) UIColor *separatorColor // 设置分隔线的颜色 @property(nonatomic,retain) UIView *tableHeaderView // 表头显示的视图 @property(nonatomic,retain) UIView *tableFooterView // 表尾显示的视图 @property(nonatomic) BOOL allowsSelection // 是否容许选中行 @property(nonatomic) BOOL allowsSelectionDuringEditing // 是否容许在编辑模式下选中行 @property(nonatomic) BOOL allowsMultipleSelection // 是否容许选中多行 @property(nonatomic) BOOL allowsMultipleSelectionDuringEditing // 是否容许在编辑模式下选中多行
UITableViewController是UIViewController的子类,UITableViewController默认扮演了3种角色:视图控制器、UITableView的数据源和代理
UITableViewController的view是个UITablView,由UITableViewController负责设置和显示这个对象。UITableViewController对象被建立后,会将这个UITableView对象的dataSource和delegate指向UITableViewController本身。
例1:城市信息
例2:九宫格
例3:天猫列表