1.创建一个UITableView对象
ITableView *tableView = [[UITableView alloc]initWithFrame:[[UIScreen mainScreen] bounds] style:UITableViewStylePlain];
2.separatorColor 分割线颜色
ableView.separatorColor = [UIColor redColor];
3.rowHeight 调整每个cell点高度(默认44)
tableView.rowHeight = 60;
4.reloadData 刷新数据
[tableView reloadData];
5.协议两个必须实现的方法
控制一个section中cell的多少
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
控制cell中的内容
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)
indexPath
6.选中cell时候使用的方法
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
7.取消选中时候用的方法(不常用)
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
8.控制分区个数
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
9.section上Header显示的内容
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
10.section上Footer显示的内容
- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
11.section顶部的高度
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
12.cell的高度
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
13 该方法返回值用于在表格右边建立一个浮动的索引
- (NSArray*)sectionIndexTitlesForTableView:(UITableView*)tableView;
cell相关:
1.返回表格中指定indexPath对应的cell
- (UITableViewCell*)cellForRowAtIndexPath:(NSIndexPath*)indexPath;
2.返回指定cell的indexPath
- (NSIndexPath*)indexPathForCell:(UITableViewCell*)cell;
3.返回表格中指定点所在的indexPath
- (NSIndexPath*)indexPathForRowAtPoint:(CGPoint)point;
4.返回表格中指定区域内所有indexPath 组成的数组
- (NSArray*)indexPathsForRowsInRect:(CGRect)rect;
5.返回表格中所有可见区域内cell的数组
- (NSArray*)visibleCells;
6.返回表格中所有可见区域内cell对应indexPath所组成的数组
- (NSArray*)indexPathsForVisibleRows;
7.控制该表格滚动到指定indexPath对应的cell的顶端 中间 或者下方
- (void)scrollToRowAtIndexPath:(NSIndexPath*)indexPath atScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated;
8.控制该表格滚动到选中cell的顶端 中间 或者下方
-(void)scrollToNearestSelectedRowAtScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated;
处理单元格的选中
1.控制该表格是否允许被选中
@property(nonatomic)BOOLallowsSelection
2.控制该表格是否允许多选
@property(nonatomic)BOOLallowsMultipleSelection
3.控制表格处于编辑状态时是否允许被选中
@property(nonatomic)BOOLallowsSelectionDuringEditing;
4.控制表格处于编辑状态时是否允许被多选
@property(nonatomic)BOOLallowsMultipleSelectionDuringEditing
5.获取选中cell对应的indexPath
- (NSIndexPath*)indexPathForSelectedRow;
6.获取所有被选中的cell对应的indexPath组成的数组
- (NSArray*)indexPathsForSelectedRows
7.控制该表格选中指定indexPath对应的表格行,最后一个参数控制是否滚动到被选中行的顶端 中间 和底部
- (void)selectRowAtIndexPath:(NSIndexPath*)indexPath animated:(BOOL)animated scrollPosition:(UITableViewScrollPosition)scrollPosition;
8.控制取消选中该表格中指定indexPath对应的表格行
- (void)deselectRowAtIndexPath:(NSIndexPath*)indexPath animated:(BOOL)animated;
9.当用户将要选中表格中的某行时触发方法
- (NSIndexPath*)tableView:(UITableView*)tableView willSelectRowAtIndexPath:(NSIndexPath*)indexPath;
10.当用户完成选中表格中的某行时触发方法
-(void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath
11.当用户将要取消选中表格中某行时触发
- (NSIndexPath*)tableView:(UITableView*)tableView willDeselectRowAtIndexPath:(NSIndexPath*)indexPath
12.当用户完成取消选中表格中某行时触发
- (void)tableView:(UITableView*)tableView didDeselectRowAtIndexPath:(NSIndexPath*)indexPath
关于对表格的编辑
1.对表格控件执行多个连续的插入,删除和移动操作之前调用这个方法开始更新
- (void)beginUpdates;
2.对表格控件执行多个连续的插入,删除和移动操作之后调用这个方法结束
- (void)endUpdates;
3.在一个或多个indexPath处插入cell
- (void)insertRowsAtIndexPaths:(NSArray*)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;
4.删除一个或多个indexPath处的cell
- (void)deleteRowsAtIndexPaths:(NSArray*)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;
5.将制定indexPath处的cell移动到另个一indexPath处
- (void)moveRowAtIndexPath:(NSIndexPath*)indexPath toIndexPath:(NSIndexPath*)newIndexPath
6.指定的indexSet所包含的一个或多个分区号对应的位置插入分区
- (void)insertSections:(NSIndexSet*)sections withRowAnimation:(UITableViewRowAnimation)animation;
7.删除指定indexSet所包含的一个或多个分区号所对应的分区
- (void)deleteSections:(NSIndexSet*)sections withRowAnimation:(UITableViewRowAnimation)animation;
8.将指定分区移动到另一个位置
- (void)moveSection:(NSInteger)section toSection:(NSInteger)newSection
@protocolUITableViewDataSource协议中
9.该方法返回值决定指定indexPath对应的cell是否可以编辑
- (BOOL)tableView:(UITableView*)tableView canEditRowAtIndexPath:(NSIndexPath*)indexPath;
10.该方法返回值决定指定indexPath对应的cell是否可以移动
- (BOOL)tableView:(UITableView*)tableView canMoveRowAtIndexPath:(NSIndexPath*)indexPath;
11.当用户对指定表格行编辑(包括插入和删除)时触发该方法
- (void)tableView:(UITableView*)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath*)indexPath;
12.该方法触发移动 通常对数据进行处理(重要)
- (void)tableView:(UITableView*)tableView moveRowAtIndexPath:(NSIndexPath*)sourceIndexPath toIndexPath:(NSIndexPath*)destinationIndexPath;
@protocolUITableViewDelegate协议中
13.开始/完成 编辑时调用的两个方法
- (void)tableView:(UITableView*)tableView willBeginEditingRowAtIndexPath:(NSIndexPath*)indexPath;
- (void)tableView:(UITableView*)tableView didEndEditingRowAtIndexPath:(NSIndexPath*)indexPath;
14.该方法返回值决定了 indexPath处的cell 的编辑状态 返回值为枚举类型 分别为 None Delete Insert
- (UITableViewCellEditingStyle)tableView:(UITableView*)tableView editingStyleForRowAtIndexPath:(NSIndexPath*)indexPath;
15.该方法决定了 cell处于被编辑状态时是否应该缩进 若未重写 所有cell处于编辑状态时都会缩进
- (BOOL)tableView:(UITableView*)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath*)indexPath;
UITableViewCell:UIView
这里涉及到自定义UITableViewCell以下为具体步骤以及需要注意到地方
1.首先创建一个类继承UITableViewCell
2.把自定义cell上到自定义视图全部设置为属性(注意:属性名一定不要和系统属性命重复e.g. imageView,textLable,detailTextLable)
3.在cell的初始化方法中对自定义视图对属性初始化,在初始化对时候可以不指定frame(注意,这里加载到视图上时加载到contentView上同时注意内存管理)
4.在layoutSubviews方法中完成最后操作通常给出frame(注意,这个方法为系统自带方法,当一个cell显示到屏幕上之前,最后调用到一个方法,所有cell到操作包括赋值,调整高度等都已经完成一定不要忘记[super layoutSubviews];)
附加:当一个cell被选中的方法
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
一些小操作:
//将单元格的边框设置为圆角
cell.layer.cornerRadius=12;
cell.layer.masksToBounds=YES;
UITableView-------表视图--继承UIScrollView并遵守NSCoding协议
属性
frame-------------设置控件的位置和大小
backgroundColor--------设置控件的颜色
style--------获取表视图的样式
dataSource---------设置UITableViewDataSource的代理
delegate---------设置UITableViewDelegate代理
sectionHeaderHeight------设置组表视图的头标签高度
sectionFooterHeight--------设置级表视图的尾标签高度
backgroundView----------设置背景视图,只能写入
editing----------是否允许编辑,默认是NO
allowsSelection----------在非编辑下,行是否可以选中,默认为YES
allowsSelectionDuringEditing----------控制某一行时,是否可以编辑,默认为NO
allowsMultipleSelection--------是否可以选择多行,默认为NO
allowsMutableSelectionDuringEditing----------在选择多行的情况下,是否可以编辑,默认为NO
sectionIndexMinimumDisplayRowCount-------------显示某个组索引列表在右边当行数达到这个值,默认是NSInteger的最大值
sectionIndexColor------------选择某个部分的某行改变这一行上文本的颜色
sectionIndexTrackingBackgroundColor--------设置选中某个部分的背景颜色
separatorStyle----------设置单元格分隔线的样式
separatorColor---------设置选中单元格分隔线的颜色
tableHeaderView---------设置组表的头标签视图
tableFooterView----------设置组表的尾标签视图
UITableView类目属性
section--------获取当前在哪个组内
row------------获取当前单元格是第几行
方法:
初始化方法:
initWithFrame:-----------设置表的大小和位置
initWithFrame:style---------设置表的大小,位置和样式(组,单一)
setEditing:----------表格进入编辑状态,无动画
setEditing: animated:---------表格进入编辑状态,有动画
reloadData---------------刷新整个表视图
reloadSectionIndexTitles--------刷新索引栏
numberOfSections-----------获取当前所有的组
numberOfRowsInSection:---------获取某个组有多少行
rectForSection:----------获取某个组的位置和大小
rectForHeaderInSection:---------获取某个组的头标签的位置和大小
rectForFooterInSection:-----------获取某个组的尾标签的位置和大小
rectForRowAtIndex:-----------获取某一行的位置和大小
indexPathForRowAtPoint-------------点击某一个点,判断是在哪一行上的信息。
indexPathForCell:------------获取单元格的信息
indexPathsForRowsInRect:---------在某个区域里会返回多个单元格信息
cellForRowAtIndexPath:-------------通过单元格路径得到单元格
visibleCells-----------返回所有可见的单元格
indexPathsForVisibleRows--------返回所有可见行的路径
headerViewForSection:--------设置头标签的视图
footerViewForSection;----------设置尾标签的视图
beginUpdates--------只添加或删除才会更新行数
endUpdates---------添加或删除后会调用添加或删除方法时才会更新
insertSections:withRowAnimation:-----------插入一个或多个组,并使用动画
insertRowsIndexPaths:withRowAnimation:-------插入一个或多个单元格,并使用动画
deleteSections:withRowAnimation:--------删除一个或多个组,并使用动画
deleteRowIndexPaths:withRowAnimation:--------删除一个或多个单元格,并使用动画
reloadSections:withRowAnimation:---------更新一个或多个组,并使用动画
reloadRowIndexPaths:withRowAnimation:-------------更新一个或多个单元格,并使用动画
moveSection:toSection:-------------移动某个组到目标组位置
moveRowAtIndexPath:toIndexPath:-----------移动个某个单元格到目标单元格位置
indexPathsForSelectedRow----------返回选择的一个单元格的路径
indexPathsForSelectedRows---------返回选择的所有的单元格的路径
selectRowAtIndexPath:animation:scrollPosition---------设置选中某个区域内的单元格
deselectRowAtIndexPath:animation:----------取消选中的单元格
重用机制
dequeueReusableCellWithIdentifier:---------获取重用队列里的单元格
UITableViewDataSource代理方法:
方法:
numberOfSectionsInTableView:------------设置表格的组数
tableView:numberOfRowInSection:----------设置每个组有多少行
tableView:cellForRowAtIndexPath:---------设置单元格显示的内容
tableView:titleForHeaderInSection:---------设置组表的头标签视图
tableView:titleForFooterInSection:-----------设置组表的尾标签视图
tableView:canEditRowAtIndexPath:---------设置单元格是否可以编辑
tableView:canMoveRowAtIndexPath:--------设置单元格是否可以移动
tableView:sectionIndexTitleForTableView:atIndex:-------设置指定组的表的头标签文本
tableView:commitEditingStyle:forRowAtIndexPath:----------编辑单元格(添加,删除)
tableView:moveRowAtIndexPath:toIndexPath-------单元格移动
UITableViewDelegate代理方法:
tableView:willDisplayCell: forRowAtIndexPath:-----------设置当前的单元格
tableView: heightForRowAtIndexPath:-----------设置每行的高度
tableView:tableView heightForHeaderInSection:-----------设置组表的头标签高度
tableView:tableView heightForFooterInSection:-------------设置组表的尾标签高度
tableView: viewForHeaderInSection:----------自定义组表的头标签视图
tableView: viewForFooterInSection: ----------自定义组表的尾标签视图
tableView: accessoryButtonTappedForRowWithIndexPath:-----------设置某个单元格上的右指向按钮的响应方法
tableView: willSelectRowAtIndexPath:-----------获取将要选择的单元格的路径
tableView: didSelectRowAtIndexPath:-----------获取选中的单元格的响应事件
tableView: tableView willDeselectRowAtIndexPath:------------获取将要未选中的单元格的路径
tableView: didDeselectRowAtIndexPath:-----------获取未选中的单元格响应事件
执行顺序如下:
第一轮:
1、numberOfSectionsInTableView :假如section=2,此函数只执行一次,假如section=0,下面函数不执行,默认为1
2、heightForHeaderInSection ,执行两次,此函数执行次数为section数目
3、heightForFooterInSection ,函数属性同上,执行两次
4、numberOfRowsInSection ,此方法执行一次
5、heightForHeaderInSection ,此方法执行了两次,我其实有点困惑为什么这里还要调用这个方法
6、heightForFooterInSection ,此方法执行两次,
7、numberOfRowsInSection,执行一次
8、heightForRowAtIndexPath ,行高,先执行section=0,对应的row次数
第二轮:
1、numberOfSectionsInTableView ,一次
2、heightForHeaderInSection ,section次数
3、heightForFooterInSection ,section次数
4、numberOfRowsInSection ,一次
5、heightForHeaderInSection ,执行section次数
6、heightForFooterInSection,执行section次数
7、numberOfRowsInSection,执行一次
8、heightForRowAtIndexPath,行高,先执行一次
9、cellForRowAtIndexPath
10、willDisplayCell
然后8、9、10依次执行直到所有的cell被描画完毕