我使用此函数调用UITableView滚动:
UITableViewScrollPosition position = UITableViewScrollPositionBottom;
[self.tableView scrollToRowAtIndexPath:indexPath
atScrollPosition:position
animated:YES];
如果顶部有足够的单元格,这是成功的,如下所示:
但是如果这不成功,例如,A Cell,它是第一个,所以它不能滚动到Bottom,它会像这样工作:
我可以检测哪个单元格可以滚动到Bottom,哪个不可以?感谢。
答案 0 :(得分:0)
您可以通过操纵tableView.contentInset
属性来执行此操作。您需要检查行数并相应地进行操作。
希望这有帮助。