React Native ListView:如何滚动到特定行

时间:2016-01-12 17:44:39

标签: react-native

在NativeiOS中,您可以使用以下命令将UITableView滚动到特定的UITableViewCell:

[tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:87 inSection:0] 
         atScrollPosition:UITableViewScrollPositionMiddle animated:NO];

..或类似。

例如,如果ListView持有100个项目,我想滚动以使第87个项目可见。

React Native ListView Docs那里没什么明显的。

有没有人设法实现这一目标?我意识到ListView没有包装UITableView所以我们不能只公开该方法。

编辑:看起来对0.19-rc版本有一些支持,请查看https://github.com/facebook/react-native/releases

https://github.com/facebook/react-native/commit/33e05a11f00d1455f39b6dfef1c76c4130df02e5

1 个答案:

答案 0 :(得分:3)

ScrollViewcontentOffset={{ x: offsetX, y: offsetY }}一起使用,并根据要滚动到的行计算偏移量变量。