gpt4 book ai didi

ios - scrollToItemAtIndexPath iOS swift

转载 作者:搜寻专家 更新时间:2023-11-01 06:23:49 26 4
gpt4 key购买 nike

我希望能够滚动到标题而不是该标题下的第一项。这很重要的原因是 atScrollPosition 参数设置为 Top,我滚动到特定部分中的第零项。然后,这会隐藏标题,并且用户不会收到确认他们已滚动到正确部分的反馈。

有人知道怎么做吗?

最佳答案

使用 scrollRectToVisible 代替 scrollToRowAtIndexPath。传入一个与tableview大小相同的rect,即可实现精准定位。

因此,如果您希望标题正好位于顶部,请使用标题的框架,将高度设置为表格 View 的高度,然后将其传递给 scrollRectToVisible

类似于:

CGRect sectionRect = [tableView rectForSection:indexOfSectionToScrollTo];
[tableView scrollRectToVisible:sectionRect animated:YES];

参见 this

关于ios - scrollToItemAtIndexPath iOS swift ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28041907/

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