gpt4 book ai didi

ios - UITableView 节标题滚动

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:32:48 24 4
gpt4 key购买 nike

我关注了this post当滚动 tableview 时,使我的节标题在 View 之外动画。但是,当滚动回顶部时,标题不会回到 View 中。曾经。鉴于我完全遵循了解决方案(并且我没有在其他任何地方设置 contentInset),我感到很困惑。谁能指出我正确的方向?这是我的代码:

- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
CGPoint p = scrollView.contentOffset;

CGFloat height = [self tableView:self.agendaDetailTable heightForHeaderInSection:0];

if (p.y <= height && p.y > 0) {
self.agendaDetailTable.contentInset = UIEdgeInsetsMake(-p.y, 0, 0, 0);
} else if (p.y >= height) {
self.agendaDetailTable.contentInset = UIEdgeInsetsMake(-height, 0, 0, 0);
}
}

最佳答案

为表格启用 bouncesalwaysBounceVertical 以允许它滚动到内容的边缘并在发生这种情况时重写偏移量。

关于ios - UITableView 节标题滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9794959/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com