作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 UIKit 中,我们有 UITableViewDataSourcePrefetching
( https://andreygordeev.com/2017/02/20/uitableview-prefetching/ )。
我想在 SwiftUI 中做一些类似的事情,以显示大量数据,其中所有数据不能同时在内存中。
我想出了一个解决方案,其中一个不可见的矩形有一个 .onAppear
处理加载更多数据的回调。问题是这会使体验变得非常缓慢,因为数据实际上并未预取,而是仅在我们到达表中的某个点时才加载。
struct ContentView: View {
@ObjectBinding var elements: [Int]
var body: some View {
ForEach(elements.identified(by: \.self)) { element in
Text("\(element)")
}
Rectangle().opacity(0).onAppear {
// Add more data
}
}
}
.onAppear
由
ForEach
创建的较早元素上的事件, 在我们到达当前数据的末尾之前实际获取数据。
View
出现时,SwiftUI 会访问所有索引。最初加载。
最佳答案
您可以尝试使用 ForEach 内部的索引,就像这里
ForEach(0..<store.repos.count) { index in
if (self.store.repos.count - index < 10) {
RepoRow(repo: self.store.repos[index])
.onAppear(perform: self.fetchNextPage)
} else {
RepoRow(repo: self.store.repos[index])
}
}
关于swiftui - SwiftUI 中的 UITableViewDataSourcePrefetching,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56647542/
在 UIKit 中,我们有 UITableViewDataSourcePrefetching ( https://andreygordeev.com/2017/02/20/uitableview-pr
我有一个 UITableView,它从 NSFetchedResultsController 获取数据。为此,我基本上从 https://developer.apple.com/library/con
我是一名优秀的程序员,十分优秀!