有没有办法滚动到ScrollView的顶部以响应按下按钮?
我可以强制重新渲染整个页面,但这看起来非常低效.
您可以运行ScrollView的“scrollTo”方法.查看ScrollView组件
https://github.com/facebook/react-native/blob/master/Libraries/Components/ScrollView/ScrollView.js#L288的源代码
原文链接:https://www.f2er.com/react/301292.html您可以通过设置ref属性并使用this.refs来引用ScrollView组件,如下所述:https://facebook.github.io/react/docs/more-about-refs.html