We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var filterGoodsList: [Goods] = [] { didSet { tableView.es.stopPullToRefresh() tableView.es.stopLoadingMore() guard requiredSuccess else { return } if pullDownFlag && filterGoodsList.isEmpty { tableView.es.noticeNoMoreData() return } if !pullDownFlag && filterGoodsList.count == oldValue.count { tableView.es.noticeNoMoreData() return } } }
在数据源设置时来控制刷新状态, 我也尝试过机型判断, 在空数据前不调用tableView.es.stopLoadingMore 而是直接调用tableView.es.noticeNoMoreData , 我的需求是想要在下拉刷新的时候实现空数据的效果
tableView.es.stopLoadingMore
tableView.es.noticeNoMoreData
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在数据源设置时来控制刷新状态, 我也尝试过机型判断, 在空数据前不调用
tableView.es.stopLoadingMore
而是直接调用tableView.es.noticeNoMoreData
, 我的需求是想要在下拉刷新的时候实现空数据的效果The text was updated successfully, but these errors were encountered: