UITableView/UIScrollView 滚动到项目索引

发布于 2024-09-06 00:44:41 字数 409 浏览 9 评论 0原文

我正在尝试调用

[tableView scrollToItemAtIndex: [tableView indexForCell: firstVisibleCell] atScrollPosition: UITableViewScrollPositionTop animated:YES];

强制我的表格“捕捉”到第一个可见项目。 的调用

- (void)scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView

这工作正常,但我只收到对“何时必须完成滚动” (文档中已说明)。无论如何,我是否可以获得 firstVisibleCell 的偏移量,以便我可以进行比较以查看是否需要滚动?

I'm trying to call

[tableView scrollToItemAtIndex: [tableView indexForCell: firstVisibleCell] atScrollPosition: UITableViewScrollPositionTop animated:YES];

To force my table to 'snap' to the first visible item. This works fine, but I only get a call to

- (void)scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView

When scrolling had to be completed (which is stated in the document). Is there anyway that I can get the offset of the firstVisibleCell so I can do a comparison to see if scrolling is required?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紙鸢 2024-09-13 00:44:41

使用方法 - (CGRect)rectForRowAtIndexPath:(NSIndexPath *)indexPath

NSIndexPath *indexPath = [tableView indexForCell:firstVisibleCell];
CGRect rect = [tableView rectForRowAtIndexPath:indexPath];

Use the method - (CGRect)rectForRowAtIndexPath:(NSIndexPath *)indexPath:

NSIndexPath *indexPath = [tableView indexForCell:firstVisibleCell];
CGRect rect = [tableView rectForRowAtIndexPath:indexPath];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文