我有一个表格视图,其中包含具有动态单元格高度的自定义单元格,具体取决于单元格内容。
我的问题如下,当我在 viewDidLoad 中以编程方式要求滚动到它工作的给定位置时,除了最后一行。有时该行出现但不完全,有时甚至没有出现。在这两种情况下,我都必须手动滚动才能看到该行。
这是代码:
[self.tableView reloadData];
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:aRow inSection:aSection];
[self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:YES ];
这是iOS的错误吗?任何解决方法?