我正在做一个应用程序,我每行都有ten cells
个。
index of cell
。 4 cells
会根据其高度显示。 tableview
提供的方法在中间显示单元格。 6th cell
,那么我们如何在tableview
中间显示。怎么做?
答案 0 :(得分:0)
您可以在certern IndexPath中选择一个单元格。使用selectRowAtIndexPath
并使用参数UITableViewScrollPositionMiddle
。
[tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:6 inSection:0] animated:YES scrollPosition:UITableViewScrollPositionMiddle];