UItableViewControllor中header view 高度随内容变化的方法

本文介绍了如何在Swift中通过自定义头部视图、实现代理方法和更新头部高度来使UITableViewController的头部高度随着内容的变化而动态调整。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

2015年3月25号:要求UItableViewControllor中header view 高度随着内容的变化而改变

方法:


1.自定义headerview 添加代理方法

@protocol HYTSelectHeaderViewDelegate <NSObject>


-(void)selectHeaderViewDidDisplayForHeight:(CGFloat)height;


@end


2.headerview实现方法通知代理


-(CGFloat)height {

    

    //...根据自己内容计算高度...

    [self didFinishCalculateHeight:height];

    return height;

}


-(void)didFinishCalculateHeight:(CGFloat)height {

    if ([self.delegate respondsToSelector:@selector(selectHeaderViewDidDisplayForHeight:)]) {

        [self.delegate selectHeaderViewDidDisplayForHeight:height];

    }

}


3.UItableViewControllor实现代理方法 获得新高度并重新添加

-(void)setupTableHeaderFooterView {

    /** footer,去除多余线条 */

    self.tableView.tableFooterView = [[UIView allocinitWithFrame:CGRectZero];

    

    /** header, */

    HYTSelectHeaderView *headerView = [[HYTSelectHeaderView allocinit];

    //...

    headerView.frame = CGRectMake(00, [UIScreen mainScreen].bounds.size.width, headerView.height);

    self.tableView.tableHeaderView = headerView;

}


-(void)selectHeaderViewDidDisplayForHeight:(CGFloat)height {

    self.headerView.frame = CGRectMake(00, [UIScreen mainScreen].bounds.size.width, height);

    [self.tableView setTableHeaderView:self.headerView];

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值