获取scrollViewDidEndDecelerating中的行号

发布于 2024-11-03 01:59:23 字数 336 浏览 9 评论 0原文

当我使用时

- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{
     NSArray *visibleCells = [my_table visibleCells];

,我想知道可见的行数(在 my_table 中)(带有visibleCells)。

例如,如果我

[visibleCells count];

知道有 5 行可见,但我需要知道实际数字(例如:表视图中的数字 3、4、5、6、7)。

是否可以?

when i use

- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{
     NSArray *visibleCells = [my_table visibleCells];

i want to know the number of the row (in my_table) that is visible (with visibleCells).

For example, if i do

[visibleCells count];

i know that there are 5 rows visible, but i need to know the real number (for example: number 3, 4, 5, 6, 7 in the table view).

Is it possible?

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

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

发布评论

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

评论(3

缱倦旧时光 2024-11-10 01:59:23

您可以在表视图上使用数组的第一个和最后一个对象调用indexPathForCell:来获取两个索引路径。

You can call indexPathForCell: on the table view with the first and last objects of the array to get the two index paths.

欲拥i 2024-11-10 01:59:23

解决了!

使用这个

UITableViewCell *currentCell = [visibleCells objectAtIndex:i];
NSIndexPath *indexPath = [tabella_gallery indexPathForCell:currentCell];

效果很好!

solved!

using this

UITableViewCell *currentCell = [visibleCells objectAtIndex:i];
NSIndexPath *indexPath = [tabella_gallery indexPathForCell:currentCell];

works fine!

浮世清欢 2024-11-10 01:59:23

这是我使用的一个方法

func loadImagesForVisibleRows() {

    // Get the visible cells indexPaths
    let indexes: Array = tableView.indexPathsForVisibleRows()!

    // Loop through them to determine whether visible or not
    for index in indexes {

        let row = index.row
        // Do what you need to do

    }
}

Here is a method I use

func loadImagesForVisibleRows() {

    // Get the visible cells indexPaths
    let indexes: Array = tableView.indexPathsForVisibleRows()!

    // Loop through them to determine whether visible or not
    for index in indexes {

        let row = index.row
        // Do what you need to do

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