-
HeaderView
UITableView中设置HeaderView有两种方式
方式一:
UIView *redView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 200, 200)];
redView.backgroundColor = [UIColor redColor];
self.myTableView.tableHeaderView = redView;
方式二:
利用UITableView的代理方法
- 只设置文本
- (nullable NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section;
- (nullable NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section;
- 设置view
- (nullable UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section;
- (nullable UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section;
在这两个方法中,当然我们可以用最普通的UIView,不过系统提供了UITableViewHeaderFooterView类。使用UITableViewHeaderFooterView的好处是有重用的功能,所以建议使用UITableViewHeaderFooterView。UITableViewHeaderFooterView的使用方法可以仿照UITableViewCell的使用方法
- UITableViewCell使用方法(先注册后使用):
自定义UITableViewCell有两种形式:直接用代码或者用XIB
注册:
- (void)registerNib:(nullable UINib *)nib forCellReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(5_0);
- (void)registerClass:(nullable Class)cellClass forCellReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(6_0);
使用:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
/*------------------------直接用代码自定义Cell--------------------*/
MyClassTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyClassTableViewCell"];
// 使用代码自定义的cell要重写- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(nullable NSString *)reuseIdentifier NS_AVAILABLE_IOS(3_0) NS_DESIGNATED_INITIALIZER;方法
// 而且要判断缓存池中拿到的cell是否为空
if (cell == nil) {
cell = [[MyClassTableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"MyClassTableViewCell"];
}
/*------------------------直接用代码自定义Cell--------------------*/
/*------------------------使用XIB自定义Cell--------------------*/
// 使用XIB自定义的Cell可以直接从缓存池中取到,可以省去if判断
MyXIBTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyXIBTableViewCell"];
cell.cellLabel.text = @"afhfgkgklsdg";
/*------------------------使用XIB自定义Cell--------------------*/
return cell;
}
- UITableViewHeaderFooterView使用方法(也是先注册后使用)
自定义UITableViewHeaderFooterView也有两种形式:直接用代码或者用XIB
UITableViewHeaderFooterView设置背景颜色时:要用contentView这个属性
注册:
- (void)registerNib:(nullable UINib *)nib forHeaderFooterViewReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(6_0);
- (void)registerClass:(nullable Class)aClass forHeaderFooterViewReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(6_0);
使用:
- (nullable UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section;
- (nullable UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section;
以创建Header为例
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
/*------------------------使用代码自定义UITableViewHeaderFooterView--------------------*/
MyClassHeaderView *header = [tableView dequeueReusableHeaderFooterViewWithIdentifier:@"MyClassHeaderView"];
// 使用代码自定义的UITableViewHeaderFooterView要重写- (instancetype)initWithReuseIdentifier:(nullable NSString *)reuseIdentifier NS_DESIGNATED_INITIALIZER;方法
// 而且要判断缓存池中拿到的UITableViewHeaderFooterView是否为空
if (header == nil) {
header = [[MyClassHeaderView alloc] initWithReuseIdentifier:@"MyClassHeaderView"];
}
/*------------------------使用代码自定义UITableViewHeaderFooterView--------------------*/
/*------------------------使用XIB自定义UITableViewHeaderFooterView--------------------*/
MyXIBHeaderView *header = [tableView dequeueReusableHeaderFooterViewWithIdentifier:@"MyXIBHeaderView"];
/*------------------------使用XIB自定义UITableViewHeaderFooterView--------------------*/
return header;
}
// 一定要实现这个高度方法,否则上面的方法不执行
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 100.0;
}
-
组头的悬浮效果
UITableView设置为plain的样式时,组头就会默认有悬浮效果(即组头会停留在屏幕的上边,直到改组滚动结束)
- 取消悬浮效果的方法:参考来至【Cdream】的文章【iOS - 取消tableView组头卡住悬停的办法】
1、将 style 设置为 Grouped 。这时所有的section header都会随着scrollview滚动了。但是这时,tableview的底部会默认出现一个footerView的区域,如果不想要这个滚动区域,可以通过代理方法设置
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
return 0.1; // 注意要设置为0.1,不能设置为0
}
2、重载scrollview的delegate方法
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
CGFloat sectionHeaderHeight = 40;
if (scrollView.contentOffset.y<=sectionHeaderHeight&&scrollView.contentOffset.y>=0) {
scrollView.contentInset = UIEdgeInsetsMake(-scrollView.contentOffset.y, 0, 0, 0);
} else if (scrollView.contentOffset.y>=sectionHeaderHeight) {
scrollView.contentInset = UIEdgeInsetsMake(-sectionHeaderHeight, 0, 0, 0);
}
}