首页 > 学院 > 开发设计 > 正文

UITableView header不随着滑动停留

2019-11-06 09:42:47
字体:
来源:转载
供稿:网友

1.UITableView的Header

平时用header时,滑动时header会停留在顶端,那是设置的不对,想让它跟着滑动,看下面的方法

//1.设成GroupUITableView *tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStyleGrouped];//2.设置header,footer高度搞定- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{ return 10;}- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{ return 0.01;}

2.注意

group类型下,footer有默认高度,一定要设置高度后它才会不显示。

3.另一种思路

还是用plain,但是设置footer的高度为10,header的高度为0.01(不社设也可以),这样也不会停留的,亲测可以。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表