我有这行代码:

tableView.contentOffset = CGPointMake(0.0f, 10000000.0f);

内容大小比 10000000.0f 小很多,但 UITableView 仍然没有滚动到底部。我该怎么做?

最佳答案

滚动到 tableViewCell

//for instance, you have 15 cells
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:14 inSection:0];
[self.tableView scrollToRowAtIndexPath:indexPath
                      atScrollPosition:UITableViewScrollPositionTop
                              animated:YES];

关于ios - UITableView 滚动到底部,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25467859/

10-13 07:13