gpt4 book ai didi

ios - 获取 UITableView 中最后一行的索引路径

转载 作者:行者123 更新时间:2023-11-28 18:32:46 25 4
gpt4 key购买 nike

我有一个包含 1 个部分的 UITableView 和来自 NSMutableArraynumberOfRows:

我在这里想要的是,每当 UITableView 出现时, ScrollView 必须滚动到最后一行。

为此,我需要最后一行的 indexPath。如何获取?

我知道这个问题已经回答了很多次。但这些方法都不适合我。

这是我试过的代码

-(NSIndexPath*)lastIndexPath{
NSInteger sectionsAmount = [myTableView numberOfSections];
NSInteger rowsAmount = [myTableView numberOfRowsInSection:sectionsAmount-1];
NSIndexPath *lastIndexPath = [NSIndexPath indexPathForRow:(rowsAmount - 1) inSection:(sectionsAmount - 1)];
return lastIndexPath;
}

最佳答案

因为你只有一个部分,所以你可以用

找到索引路径
[NSIndexPath indexPathForRow:[yourArray count]-1 inSection:0]

关于ios - 获取 UITableView 中最后一行的索引路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25052142/

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