gpt4 book ai didi

iphone - 如果您不知道 tableView 有多少行,如何滚动到它的底部?

转载 作者:行者123 更新时间:2023-12-03 21:06:29 26 4
gpt4 key购买 nike

我知道我们可以使用以下方法滚动到常规 UITableViewController 中 UITableView 的底部:

- (void)scrollToRowAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated

可以通过计算对象数组中有多少个对象来找到indexPath。然而,在 Three20 中...我们如何做同样的事情,因为我们在表中没有对象数组?

最佳答案

我不知道是否有什么东西使 Three20 有所不同,但这应该适用于任何 UITableViewController 子类:

- (void)scrollToBottom {
NSInteger section = [self.tableView numberOfSections] - 1;
NSInteger row = [self.tableView numberOfRowsInSection:section] - 1;
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:row inSection:section];
[self.tableView scrollToRowAtIndexPath:indexPath
atScrollPosition:UITableViewScrollPositionMiddle
animated:YES];
}

关于iphone - 如果您不知道 tableView 有多少行,如何滚动到它的底部?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6701620/

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