如何以编程方式向下滚动UITable

时间:2010-11-25 19:57:07

标签: iphone xcode uitableview ios

我正在使用UITable实现泡泡聊天, 并且我希望每次有人发布消息时向下滚动表格。 是否可以使表格视图向下滚动? 我该怎么做?

1 个答案:

答案 0 :(得分:5)

您可能想要调用此方法:

    [self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:1 inSection:1] atScrollPosition:UITableViewScrollPositionTop animated:YES];