提问人:J. Edgell 提问时间:6/15/2019 最后编辑:Matteo PaciniJ. Edgell 更新时间:5/4/2022 访问量:17211
在 SwiftUI 中,控制事件在哪里,即 scrollViewDidScroll 用于检测列表底部数据
In SwiftUI, where are the control events, i.e. scrollViewDidScroll to detect the bottom of list data
问:
在 SwiftUI 中,有谁知道控制事件(如 scrollViewDidScroll)在哪里,以检测用户何时到达列表底部,从而导致事件检索其他数据块?还是有新的方法可以做到这一点?
似乎 UIRefreshControl() 也不存在......
答:
SwiftUI 缺少很多功能——目前似乎是不可能的。
但这里有一个解决方法。
TL;DR直接在答案底部跳过
一个有趣的发现,同时对 和 进行了一些比较:ScrollView
List
struct ContentView: View {
var body: some View {
ScrollView {
ForEach(1...100) { item in
Text("\(item)")
}
Rectangle()
.onAppear { print("Reached end of scroll view") }
}
}
}
我在 a 内的 100 个项目的末尾附加了 a,并在 中附加了 a。Rectangle
Text
ScrollView
print
onDidAppear
当它出现时,它就会触发,即使它显示了前 20 个项目。ScrollView
Scrollview 中的所有视图都会立即呈现,即使它们位于屏幕外也是如此。
我尝试了相同的方法,但行为不同。List
struct ContentView: View {
var body: some View {
List {
ForEach(1...100) { item in
Text("\(item)")
}
Rectangle()
.onAppear { print("Reached end of scroll view") }
}
}
}
只有当到达底部时才会执行!print
List
因此,这是一个临时解决方案,直到 SwiftUI API 变得更好。
使用一个并在其末尾放置一个“假”视图,并在其中放置获取逻辑
List
onAppear { }
评论
contentSize
ScrollView
.gesture(DragGesture(minimumDistance: length).onEnded{ _ in print"Done!" })
您可以检查最新的元素是否出现在 onAppear 中。
struct ContentView: View {
@State var items = Array(1...30)
var body: some View {
List {
ForEach(items, id: \.self) { item in
Text("\(item)")
.onAppear {
if let last == self.items.last {
print("last item")
self.items += last+1...last+30
}
}
}
}
}
}
评论
如果您需要有关如何滚动 scrollView 或列表的更精确信息,可以使用以下扩展作为解决方法:
extension View {
func onFrameChange(_ frameHandler: @escaping (CGRect)->(),
enabled isEnabled: Bool = true) -> some View {
guard isEnabled else { return AnyView(self) }
return AnyView(self.background(GeometryReader { (geometry: GeometryProxy) in
Color.clear.beforeReturn {
frameHandler(geometry.frame(in: .global))
}
}))
}
private func beforeReturn(_ onBeforeReturn: ()->()) -> Self {
onBeforeReturn()
return self
}
}
您可以像这样利用更改的框架:
struct ContentView: View {
var body: some View {
ScrollView {
ForEach(0..<100) { number in
Text("\(number)").onFrameChange({ (frame) in
print("Origin is now \(frame.origin)")
}, enabled: number == 0)
}
}
}
}
滚动时将调用闭包。使用与透明颜色不同的颜色可能会带来更好的性能。onFrameChange
编辑:我通过将框架放在闭包之外来改进代码。这在 geometryProxy 在该闭包中不可用的情况下会有所帮助。beforeReturn
评论
我尝试了这个问题的答案,但出现类似 @C.Aglar 的错误。Pattern matching in a condition requires the 'case' keyword
我更改了代码以检查出现的项目是否是列表的最后一个,它将打印/执行子句。滚动并到达列表的最后一个元素后,此条件将为真。
struct ContentView: View {
@State var items = Array(1...30)
var body: some View {
List {
ForEach(items, id: \.self) { item in
Text("\(item)")
.onAppear {
if item == self.items.last {
print("last item")
fetchStuff()
}
}
}
}
}
}
OnAppear 解决方法在嵌套在 ScrollView 中的 LazyVStack 上工作正常,例如:
ScrollView {
LazyVStack (alignment: .leading) {
TextField("comida", text: $controller.searchedText)
switch controller.dataStatus {
case DataRequestStatus.notYetRequested:
typeSomethingView
case DataRequestStatus.done:
bunchOfItems
case DataRequestStatus.waiting:
loadingView
case DataRequestStatus.error:
errorView
}
bottomInvisibleView
.onAppear {
controller.loadNextPage()
}
}
.padding()
}
LazyVStack 是懒惰的,所以只有在它几乎出现在屏幕上时才会创建底部
我已经在视图修饰符中提取了加号不可见视图,可以像这样使用:LazyVStack
ScrollView
ScrollView {
Text("Some long long text")
}.onScrolledToBottom {
...
}
实现:
extension ScrollView {
func onScrolledToBottom(perform action: @escaping() -> Void) -> some View {
return ScrollView<LazyVStack> {
LazyVStack {
self.content
Rectangle().size(.zero).onAppear {
action()
}
}
}
}
}
评论