表格视图是否可以将位置滚动到底部或不?

时间:2013-11-08 09:25:01

标签: ios uitableview

我使用此函数调用UITableView滚动:

    UITableViewScrollPosition position = UITableViewScrollPositionBottom;
        [self.tableView scrollToRowAtIndexPath:indexPath
                            atScrollPosition:position
                                    animated:YES];

如果顶部有足够的单元格,这是成功的,如下所示:

enter image description here

但是如果这不成功,例如,A Cell,它是第一个,所以它不能滚动到Bottom,它会像这样工作:

enter image description here

我可以检测哪个单元格可以滚动到Bottom,哪个不可以?感谢。

1 个答案:

答案 0 :(得分:0)

您可以通过操纵tableView.contentInset属性来执行此操作。您需要检查行数并相应地进行操作。

希望这有帮助。