我使用UITable实现了气泡聊天,
而且我希望每当有人发布消息时表格向下滚动。
是否可以使表格视图向下滚动?
我怎么做?
最佳答案
您可能要调用此方法:
[self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:1 inSection:1] atScrollPosition:UITableViewScrollPositionTop animated:YES];
关于iphone - 如何以编程方式向下滚动表,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4280471/