平时用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;}group类型下,footer有默认高度,一定要设置高度后它才会不显示。
还是用plain,但是设置footer的高度为10,header的高度为0.01(不社设也可以),这样也不会停留的,亲测可以。
新闻热点
疑难解答