0

我不想从第 0 行开始显示 tableview,而是从显示第 24 行开始,这与初始视图相去甚远。我尝试了下面的代码,但它似乎不起作用。

[self.tableView setCurrentIndex:[NSIndexPath indexPathForRow:24 inSection:0]];

4

1 回答 1

0

使用scrollToRowAtIndexPath:atScrollPosition:animated: 而不是setCurrentIndex:.

setCurrentIndex不是 UITableView 方法,因此在您的代码中使用它会阻止项目的构建。

于 2013-01-07T18:38:03.240 回答