我想滚动到包含自定义单元格的表格视图的底部。
这是我用来滚动的代码:
NSIndexPath *lastMessage = [NSIndexPath indexPathForRow:[self.conversation.messages count]-1 inSection:0];
[self.messageTable scrollToRowAtIndexPath:lastMessage atScrollPosition:UITableViewScrollPositionTop animated:YES];
这会滚动视图;但是只有最后一个单元格的最顶部是可见的,大约 3/4 的单元格仍然在我必须手动向下滚动到的折叠下方。有想法该怎么解决这个吗?