主要是下面这段代码,用了 react-native-infinite-scroll-view 来实现无限加载的功能。
在 debug 模式好好的,但是一编译成 release 版本,向下滑动的时候 app 就要卡住。
有人遇到过这种情况嘛,一般大家都是怎么调试 release 版本的?
<ListView
refreshControl={
<RefreshControl
refreshing={this.state.refreshing}
onRefresh={() => this.onRefresh()}
/>
}
renderScrollComponent={props => <InfiniteScrollView {...props} />}
dataSource={this.state.dataSource}
distanceToLoadMore={10}
renderRow={(data) => this.getItemView(data)}
canLoadMore={this.state.canLoadMoreContent}
onLoadMoreAsync={this.loadMoreContentAsync}
/>
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.